mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Fixing missing deinit libraries in cores
This commit is contained in:
parent
2aeb0b079e
commit
8b1fa3bb59
@ -231,6 +231,17 @@ static void frontend_ps2_init(void *data)
|
||||
|
||||
static void frontend_ps2_deinit(void *data)
|
||||
{
|
||||
#ifndef IS_SALAMANDER
|
||||
if (audsrv_quit())
|
||||
{
|
||||
RARCH_ERR("audsrv library not deinitalizated\n");
|
||||
}
|
||||
|
||||
if (padEnd() != 1)
|
||||
{
|
||||
RARCH_ERR("padEnd library not deinitalizated\n");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static void frontend_ps2_exec(const char *path, bool should_load_game)
|
||||
|
Loading…
x
Reference in New Issue
Block a user