Android: Add system menu

The system menu opens with 3-finger touch. Currently, it can only exit
the game.
This commit is contained in:
kichikuou
2020-11-29 18:27:50 +09:00
parent 04206abb77
commit 602c309c47
12 changed files with 73 additions and 13 deletions
+3 -4
View File
@@ -19,6 +19,9 @@ void NACT::pump_events()
{
SDL_Event e;
while (SDL_PollEvent(&e)) {
if (handle_platform_event(e))
continue;
switch (e.type) {
case SDL_QUIT:
terminate = true;
@@ -40,10 +43,6 @@ void NACT::pump_events()
case SDL_APP_DIDENTERFOREGROUND:
ags->flush_screen(false);
break;
case SDL_SYSWMEVENT:
on_syswmevent(e.syswm.msg);
break;
}
}
}