mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Fixing missing deinit libraries in cores
This commit is contained in:
parent
2aeb0b079e
commit
8b1fa3bb59
1 changed files with 11 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue