From 2f922941b532198557729a5724ab8f622e72ba56 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Thu, 25 May 2006 14:05:47 +0000 Subject: The code police strikes back. * Simpler button wait. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9988 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/minesweeper.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'apps/plugins') diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c index 0eea0a4bde..bdb6fd70f5 100644 --- a/apps/plugins/minesweeper.c +++ b/apps/plugins/minesweeper.c @@ -395,7 +395,7 @@ void minesweeper_putmines(int p, int x, int y){ /* A function that will uncover all the board, when the user wins or loses. can easily be expanded, (just a call assigned to a button) as a solver. */ void mine_show(void){ - int i, j; + int i, j, button; for(i=c_height();ilcd_update(); - bool k = true; - int button = BUTTON_NONE; - while(k){ - button = rb->button_get_w_tmo(HZ/10); - if(button != BUTTON_NONE && !(button & BUTTON_REL) && - !(button & BUTTON_REPEAT)) k = false; - } + do + button = rb->button_get(true); + while ((button == BUTTON_NONE) || (button & (BUTTON_REL|BUTTON_REPEAT))); } @@ -438,7 +434,7 @@ int minesweeper(void) int i,j; int button; int lastbutton = BUTTON_NONE; - + /* the cursor coordinates */ int x=0, y=0; -- cgit v1.2.3