Booten in Titelbild.
[hackover2013-badge-firmware.git] / mock / badge_main_loop.c
index 70da0ff..376661b 100644 (file)
@@ -17,7 +17,7 @@
 
 void badge_main_loop(void) {
   char menu_buf[MAX_LEVELS][32];
-  FILE *fd = fopen(PATH_PREFIX "levels.txt", "r");
+  FILE *fd = fopen("levels.txt", "r");
 
   int i;
 
@@ -32,8 +32,8 @@ void badge_main_loop(void) {
     menu[j] = menu_buf[j];
   }
 
-  size_t choice = 0;
-  size_t first_visible = 0;
+  uint8_t choice = 0;
+  uint8_t first_visible = 0;
 
   for(;;) {
     choice = badge_menu(menu, ARRAY_SIZE(menu), &first_visible, choice);
This page took 0.030738 seconds and 4 git commands to generate.