diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-04-12 11:28:01 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-04-13 13:08:26 +0200 |
commit | bd71525b7ad1bb4f6896793ca7f6283e178b3a06 (patch) | |
tree | 4e1d62800f1f2573fbe33cf5dd33abb6061d91fe /gnu/packages/patches/kiki-level-selection-crash.patch | |
parent | 0da0f434c61d35739ab7f3741a34daf1e82133e7 (diff) | |
download | guix-bd71525b7ad1bb4f6896793ca7f6283e178b3a06.tar guix-bd71525b7ad1bb4f6896793ca7f6283e178b3a06.tar.gz |
gnu: Add kiki.
* gnu/packages/games.scm (kiki): New variable.
* gnu/packages/patches/kiki-level-selection-crash.patch,
gnu/packages/patches/kiki-makefile.patch,
gnu/packages/patches/kiki-missing-includes.patch,
gnu/packages/patches/kiki-portability-64bit.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
Diffstat (limited to 'gnu/packages/patches/kiki-level-selection-crash.patch')
-rw-r--r-- | gnu/packages/patches/kiki-level-selection-crash.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/patches/kiki-level-selection-crash.patch b/gnu/packages/patches/kiki-level-selection-crash.patch new file mode 100644 index 0000000000..8cc6478509 --- /dev/null +++ b/gnu/packages/patches/kiki-level-selection-crash.patch @@ -0,0 +1,19 @@ +Downloaded from https://anonscm.debian.org/viewvc/pkg-games/packages/trunk/kiki-the-nano-bot/debian/patches/level-selection-with-no-levels-solved.patch?revision=8291&view=co + +Kiki crashes if the user tries to use the level selection menu before +finishing any level. + +Peter De Wachter (pdewacht@gmail.com) +placed in the public domain + +--- a/py/levelselection.py ++++ b/py/levelselection.py +@@ -25,6 +25,8 @@ + # ............................................................................................................
+
+ last_level = highscore.getLastAvailableLevel()
++ if last_level < 0:
++ last_level = 0
+ current_level = (level_index >= 0) and level_index or last_level
+
+ world.max_level_index = last_level
|