diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-03-03 08:14:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-03-03 08:14:44 +0000 |
commit | 220fafdd72eab05eb49cf6811d15d6618a168910 (patch) | |
tree | c90ef2fe3e9bb932197ac3ff5b305dd39a66204e /apps/plugins/minesweeper.c | |
parent | e248eac20fc75566605aee705c130e0fa456aced (diff) |
Code Police raid. Mostly changed // comments and indented to Rockbox style.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8894 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/minesweeper.c')
-rw-r--r-- | apps/plugins/minesweeper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c index c855f8a99d..23d6e07157 100644 --- a/apps/plugins/minesweeper.c +++ b/apps/plugins/minesweeper.c @@ -33,7 +33,7 @@ use F3 to see how many mines are left (supposing all your flags are correct) PLUGIN_HEADER -//what the minesweeper() function can return +/*what the minesweeper() function can return */ #define MINESWEEPER_USB 3 #define MINESWEEPER_QUIT 2 #define MINESWEEPER_LOSE 1 @@ -402,10 +402,10 @@ int minesweeper(void) while(true){ - //clear the screen buffer + /*clear the screen buffer */ rb->lcd_clear_display(); - //display the mine field + /*display the mine field */ for(i=0;i<height;i++){ for(j=0;j<width;j++){ #if LCD_DEPTH > 1 |