Skip to content

Commit

Permalink
nav
Browse files Browse the repository at this point in the history
  • Loading branch information
xtruan committed Mar 13, 2023
1 parent bc830bb commit c93f308
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions views/flipbip_scene_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ bool flipbip_scene_1_input(InputEvent* event, void* context) {
},
true);
break;
case InputKeyRight:
case InputKeyDown:
with_view_model(
instance->view,
Expand All @@ -515,6 +516,7 @@ bool flipbip_scene_1_input(InputEvent* event, void* context) {
},
true);
break;
case InputKeyLeft:
case InputKeyUp:
with_view_model(
instance->view,
Expand All @@ -529,7 +531,7 @@ bool flipbip_scene_1_input(InputEvent* event, void* context) {
},
true);
break;
case InputKeyRight:
// case InputKeyRight:
case InputKeyOk:
// with_view_model(
// instance->view,
Expand All @@ -541,7 +543,7 @@ bool flipbip_scene_1_input(InputEvent* event, void* context) {
// },
// true);
// break;
case InputKeyLeft:
// case InputKeyLeft:
case InputKeyMAX:
break;
}
Expand Down

0 comments on commit c93f308

Please sign in to comment.