From cc1b63c133a82a2af93f31c36dd59205ad3c6501 Mon Sep 17 00:00:00 2001 From: neonloop Date: Thu, 2 Feb 2023 16:45:50 +0000 Subject: Fixes savestate screenshot and advanced menu background --- funkey/fk_instant_play.c | 2 ++ funkey/fk_menu.c | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'funkey') diff --git a/funkey/fk_instant_play.c b/funkey/fk_instant_play.c index 61e41f4..a0d9451 100644 --- a/funkey/fk_instant_play.c +++ b/funkey/fk_instant_play.c @@ -34,6 +34,7 @@ #include "fk_instant_play.h" #include "core.h" #include "overrides.h" +#include "plat.h" #include "util.h" #ifndef SHELL_CMD_POWERDOWN @@ -152,6 +153,7 @@ void FK_Resume(void) if (resume == RESUME_YES) { resume_slot = AUTOSAVE_SLOT; } + plat_video_menu_leave(); } } diff --git a/funkey/fk_menu.c b/funkey/fk_menu.c index 8028915..1983dd9 100644 --- a/funkey/fk_menu.c +++ b/funkey/fk_menu.c @@ -972,6 +972,8 @@ int FK_RunMenu(SDL_Surface *screen) read_aspect_ratio(); #endif + plat_video_menu_enter(1); + /// ------ Backup currently displayed app screen ------- background_screen = SDL_CreateRGBSurface(SDL_SWSURFACE, screen->w, screen->h, 32, 0, 0, 0, 0); @@ -1479,7 +1481,8 @@ int FK_RunMenu(SDL_Surface *screen) background_screen = NULL; } MENU_DEBUG_PRINTF("Leave Menu\n"); - plat_video_menu_leave(); + if (returnCode != MENU_RETURN_MENU) + plat_video_menu_leave(); return returnCode; } -- cgit v1.2.3