From 3399731b2dcccde2e2606c4d900e5adc39c11f4e Mon Sep 17 00:00:00 2001 From: Hans-Gert Dahmen Date: Tue, 8 Nov 2011 02:46:56 +0000 Subject: [PATCH] spot the german who tries english but fails somewhat --- animations/config.in | 6 +++--- animations/program.c | 4 ++-- animations/program.h | 2 +- display_loop.c | 4 ++-- profiles/borg-16 | 2 +- profiles/borg-andre | 2 +- profiles/borg-ls | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/animations/config.in b/animations/config.in index 047b84d..8bcc08d 100644 --- a/animations/config.in +++ b/animations/config.in @@ -11,7 +11,7 @@ comment "Animations" int "Snake Max Apples" SNAKE_MAX_APPLES 10 endmenu - bool "Chessboard" ANIMATION_CHESSBOARD + bool "Checkerboard" ANIMATION_CHECKERBOARD dep_bool_menu "Fire" ANIMATION_FIRE $RANDOM_SUPPORT int "FIRE_S" FIRE_S 30 @@ -29,12 +29,12 @@ comment "Animations" dep_bool "Random Bright" ANIMATION_RANDOM_BRIGHT $RANDOM_SUPPORT dep_bool "Stonefly" ANIMATION_STONEFLY $GAME_TETRIS_CORE dep_bool "Flying Dots" ANIMATION_FLYINGDOTS $RANDOM_SUPPORT - + dep_bool_menu "Game of Life" ANIMATION_GAMEOFLIFE $RANDOM_SUPPORT int "Game of Life Round Delay (ms)" GOL_DELAY 100 int "Game of Life Max Rounds" GOL_CYCLES 360 endmenu - + dep_bool "Breakout Demo" ANIMATION_BREAKOUT $GAME_BREAKOUT dep_bool "Martin Herweg" ANIMATION_MHERWEG $RANDOM_SUPPORT dep_bool "Langton Ant" ANIMATION_LTN_ANT $RANDOM_SUPPORT diff --git a/animations/program.c b/animations/program.c index 879f8ef..b05489a 100644 --- a/animations/program.c +++ b/animations/program.c @@ -110,8 +110,8 @@ unsigned char i, j, x; #endif -#ifdef ANIMATION_CHESSBOARD -void chessboard(unsigned char times){ +#ifdef ANIMATION_CHECKERBOARD +void checkerboard(unsigned char times){ while (times--) { for (unsigned char row = 0; row < NUM_ROWS; ++row) { for (unsigned char col = 0; col < NUM_COLS; ++col) { diff --git a/animations/program.h b/animations/program.h index 49214ce..4d2255f 100644 --- a/animations/program.h +++ b/animations/program.h @@ -22,7 +22,7 @@ inline static void off() void spiral(unsigned int delay); void joern1(); -void chessboard(unsigned char times); +void checkerboard(unsigned char times); void fire(); void random_bright(unsigned cycles); diff --git a/display_loop.c b/display_loop.c index 5998a38..8e4569f 100644 --- a/display_loop.c +++ b/display_loop.c @@ -113,9 +113,9 @@ void display_loop(){ break; #endif -#ifdef ANIMATION_CHESSBOARD +#ifdef ANIMATION_CHECKERBOARD case 5: - chessboard(20); + checkerboard(20); break; #endif diff --git a/profiles/borg-16 b/profiles/borg-16 index b6e68cd..ef3a631 100644 --- a/profiles/borg-16 +++ b/profiles/borg-16 @@ -79,7 +79,7 @@ SNAKE_CYCLE_DELAY=100 SNAKE_TERMINATION_DELAY=60 SNAKE_MAX_LENGTH=64 SNAKE_MAX_APPLES=10 -ANIMATION_CHESSBOARD=y +ANIMATION_CHECKERBOARD=y ANIMATION_FIRE=y FIRE_S=30 FIRE_N=5 diff --git a/profiles/borg-andre b/profiles/borg-andre index aad04a3..c79168d 100644 --- a/profiles/borg-andre +++ b/profiles/borg-andre @@ -76,7 +76,7 @@ SNAKE_CYCLE_DELAY=100 SNAKE_TERMINATION_DELAY=60 SNAKE_MAX_LENGTH=64 SNAKE_MAX_APPLES=10 -ANIMATION_CHESSBOARD=y +ANIMATION_CHECKERBOARD=y ANIMATION_FIRE=y FIRE_S=30 FIRE_N=5 diff --git a/profiles/borg-ls b/profiles/borg-ls index 8cb8256..6d9d798 100644 --- a/profiles/borg-ls +++ b/profiles/borg-ls @@ -71,7 +71,7 @@ SNAKE_CYCLE_DELAY=50 SNAKE_TERMINATION_DELAY=60 SNAKE_MAX_LENGTH=64 SNAKE_MAX_APPLES=10 -ANIMATION_CHESSBOARD=y +ANIMATION_CHECKERBOARD=y ANIMATION_FIRE=y FIRE_S=30 FIRE_N=5