Cathy Nguyen 3 лет назад
Родитель
Сommit
f03d2e9a71
2 измененных файлов с 10 добавлено и 7 удалено
  1. 7 4
      README.md
  2. 3 3
      tama_p1.c

+ 7 - 4
README.md

@@ -1,5 +1,3 @@
-***work in progress*** (check to-do list at the bootom of this readme.md)
-
 Tama P1 Emulator for Flipper Zero
 Tama P1 Emulator for Flipper Zero
 =======================================
 =======================================
 
 
@@ -49,10 +47,15 @@ it is easy to add direct logging after running the application:
 `./fbt launch_app APPSRC=applications\plugins\tama_p1;  python .\serial_logger.py`
 `./fbt launch_app APPSRC=applications\plugins\tama_p1;  python .\serial_logger.py`
 ```
 ```
 
 
-To-Do
------
+Implemented
+-----------
 - Menu options:
 - Menu options:
   - Switch between portrait and landscape
   - Switch between portrait and landscape
   - A+C shortcut (mute/change in-game time)
   - A+C shortcut (mute/change in-game time)
+
+
+To-Do
+-----
+- Menu options:
   - Double speed / fast-forward
   - Double speed / fast-forward
   - display/hide runtime (reason: changing the in-game clock and aging up the Tamagotchi does not affect when it evolves.)
   - display/hide runtime (reason: changing the in-game clock and aging up the Tamagotchi does not affect when it evolves.)

+ 3 - 3
tama_p1.c

@@ -175,11 +175,11 @@ static void draw_menu_landscape(Canvas* const canvas) {
         break;
         break;
     }
     }
     if(portrait_mode) {
     if(portrait_mode) {
-        canvas_draw_str(canvas, 10, 25, "Portrait");
+        canvas_draw_str(canvas, 10, 25, "Orientation: Portrait");
     } else {
     } else {
-        canvas_draw_str(canvas, 10, 25, "Landscape");
+        canvas_draw_str(canvas, 10, 25, "Orientation: Landscape");
     }
     }
-    canvas_draw_str(canvas, 10, 40, "Mute");
+    canvas_draw_str(canvas, 10, 40, "A+C (mute/change time)");
     canvas_draw_str(canvas, 10, 55, "Close menu");
     canvas_draw_str(canvas, 10, 55, "Close menu");
 }
 }