summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-08-01 23:42:41 +0000
committerNils Wallménius <nils@rockbox.org>2007-08-01 23:42:41 +0000
commit66029a58aeac41340f57d6b6c4f5c79eae04cc4a (patch)
tree6e54a1a846e102a256a650da9613e89077d2b4fa
parentb1c61b95dfddccf3a1e2a94f61ca2ca079d51437 (diff)
downloadrockbox-66029a58aeac41340f57d6b6c4f5c79eae04cc4a.tar.gz
rockbox-66029a58aeac41340f57d6b6c4f5c79eae04cc4a.zip
Prevent pong from crashing in 64 bit simulator
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14133 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/pong.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/pong.c b/apps/plugins/pong.c
index a1a1d58593..b88b95bb91 100644
--- a/apps/plugins/pong.c
+++ b/apps/plugins/pong.c
@@ -246,7 +246,10 @@ void bounce(struct pong *p, int pad, int info)
246 246
247void score(struct pong *p, int pad) 247void score(struct pong *p, int pad)
248{ 248{
249 rb->splash(HZ/4, "%s scores!", pad?"right":"left"); 249 if(pad)
250 rb->splash(HZ/4, "right scores!");
251 else
252 rb->splash(HZ/4, "left scores!");
250 rb->lcd_clear_display(); 253 rb->lcd_clear_display();
251 p->score[pad]++; 254 p->score[pad]++;
252 255