summaryrefslogtreecommitdiff
path: root/apps/plugins/solitaire.c
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2006-09-05 21:47:31 +0000
committerAntoine Cellerier <dionoea@videolan.org>2006-09-05 21:47:31 +0000
commite0cb0f68934db522031433f38ca6f909c039e22e (patch)
tree708f4a7f34625074cca243e0534a4964aa553ebb /apps/plugins/solitaire.c
parent9db73f40e75852c9147ce38869cb2f4e326e5b8f (diff)
downloadrockbox-e0cb0f68934db522031433f38ca6f909c039e22e.tar.gz
rockbox-e0cb0f68934db522031433f38ca6f909c039e22e.zip
Untested cursor display fix when no cards are left/drawn on the remains stack.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10894 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/solitaire.c')
-rw-r--r--apps/plugins/solitaire.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 291c9efe3e..7b6de208d7 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -1307,10 +1307,11 @@ int solitaire( void )
1307 j += NUMBER_WIDTH+2; 1307 j += NUMBER_WIDTH+2;
1308 } 1308 }
1309 } 1309 }
1310 else if( cur_rem == NOT_A_CARD && cur_col == REM_COL ) 1310 }
1311 { 1311 if( ( cur_rem == NOT_A_CARD || rem == NOT_A_CARD )
1312 draw_cursor( CARD_WIDTH+2*MARGIN+1, MARGIN ); 1312 && cur_col == REM_COL )
1313 } 1313 {
1314 draw_cursor( CARD_WIDTH+2*MARGIN+1, MARGIN );
1314 } 1315 }
1315 1316
1316 rb->lcd_update(); 1317 rb->lcd_update();