mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
support multiple sound drivers
This commit is contained in:
parent
636d5f257c
commit
df92fbd1f2
8 changed files with 55 additions and 58 deletions
|
@ -11,7 +11,6 @@
|
|||
|
||||
#include "../libpicofe/menu.h"
|
||||
#include "../libpicofe/input.h"
|
||||
#include "../libpicofe/linux/sndout_oss.h"
|
||||
#include "../common/emu.h"
|
||||
#include "../common/input_pico.h"
|
||||
#include "version.h"
|
||||
|
@ -342,9 +341,6 @@ void plat_init(void)
|
|||
memset(g_screen_ptr, 0, g_screen_width * g_screen_height * 2);
|
||||
xlib_init();
|
||||
#endif
|
||||
|
||||
// snd
|
||||
sndout_oss_init();
|
||||
}
|
||||
|
||||
void plat_finish(void)
|
||||
|
@ -354,7 +350,6 @@ void plat_finish(void)
|
|||
#else
|
||||
free(g_screen_ptr);
|
||||
#endif
|
||||
sndout_oss_exit();
|
||||
}
|
||||
|
||||
/* misc */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue