summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2009-10-29 04:18:29 +0000
committerKevin Ferrare <kevin@rockbox.org>2009-10-29 04:18:29 +0000
commitc8f9f9cef8722d7bd33b5b407e64148baaa819ec (patch)
treea0a1365c0e6579d67a1fe96b90e2943258b19fec
parent0aa035d73e20af65bb77798d3ada44af405507f1 (diff)
downloadrockbox-c8f9f9cef8722d7bd33b5b407e64148baaa819ec.tar.gz
rockbox-c8f9f9cef8722d7bd33b5b407e64148baaa819ec.zip
Boomshine plugin : Better messages at the end of the game (fixes the nblevel+1 being displayed)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23394 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/boomshine.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/boomshine.lua b/apps/plugins/boomshine.lua
index 9c8b5599fe..74f7f2a831 100644
--- a/apps/plugins/boomshine.lua
+++ b/apps/plugins/boomshine.lua
@@ -274,7 +274,11 @@ while true do
274 end 274 end
275end 275end
276 276
277display_message(string.format("You made it till level %d with %d points!", idx, highscore)) 277if idx > #levels then
278 display_message(string.format("You finished the game with %d points!", highscore))
279else
280 display_message(string.format("You made it till level %d with %d points!", idx, highscore))
281end
278 282
279-- Restore user backlight settings 283-- Restore user backlight settings
280rb.backlight_use_settings() 284rb.backlight_use_settings()