mirror of
https://github.com/libretro/RetroArch
synced 2025-01-27 03:35:22 +00:00
(360) Fixed memory freeing bug to do with XUI when exiting
program
This commit is contained in:
parent
3868f42687
commit
3a99b0602e
@ -416,6 +416,7 @@ begin_shutdown:
|
||||
if(path_file_exists(SYS_CONFIG_FILE))
|
||||
save_settings();
|
||||
|
||||
menu_deinit();
|
||||
xdk360_video_deinit();
|
||||
ssnes_exec();
|
||||
|
||||
|
@ -526,6 +526,11 @@ int menu_init (void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void menu_deinit (void)
|
||||
{
|
||||
app.Uninit();
|
||||
}
|
||||
|
||||
void menu_loop(void)
|
||||
{
|
||||
g_console.menu_enable = true;
|
||||
|
@ -138,6 +138,7 @@ public:
|
||||
};
|
||||
|
||||
int menu_init (void);
|
||||
void menu_deinit (void);
|
||||
void menu_loop (void);
|
||||
|
||||
extern CSSNES app;
|
||||
|
Loading…
x
Reference in New Issue
Block a user