Browse Source

fixed "enter menu"-bug

feature/2015
Hans-Gert Dahmen 15 years ago
parent
commit
f70ab4226c
  1. 21
      display_loop.c

21
display_loop.c

@ -107,21 +107,18 @@ void display_loop(){
rectangles();
break;
#endif
case 29:
// mode = 1;
break;
#ifdef ANIMATION_TESTS
case 31:
//test_level1();
test_level1();
break;
case 32:
//test_level2();
test_level2();
break;
case 33:
//test_level3();
test_level3();
break;
case 35:
@ -131,17 +128,21 @@ void display_loop(){
break;
#endif
#ifdef ANIMATION_OFF
case 0xFF:
off();
case 42:
mode = 1;
break;
#endif
#ifdef MENU_SUPPORT
case 43:
menu();
mode = oldOldmode;
#endif
#ifdef ANIMATION_OFF
case 0xFF:
off();
break;
#endif
}
}
}

Loading…
Cancel
Save