1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2006-03-03 08:14:44 +00:00
parent e248eac20f
commit 220fafdd72
15 changed files with 1052 additions and 1006 deletions

View file

@ -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