-Sound is now enabled by default in linux port
This commit is contained in:
parent
78c2f87c10
commit
7f22251195
|
@ -43,6 +43,7 @@ int main(int argc, char ** argv) {
|
|||
LogStart();
|
||||
#endif
|
||||
NDS_Init();
|
||||
SPU_ChangeSoundCore(SNDCORE_SDL, 735 * 4);
|
||||
|
||||
if (argc < 2) {
|
||||
fprintf(stderr, "usage: %s filename\n", argv[0]);
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "../armcpu.h"
|
||||
#include "../NDSSystem.h"
|
||||
#include "../cflash.h"
|
||||
#include "../sndsdl.h"
|
||||
|
||||
#include "desmume.h"
|
||||
|
||||
|
@ -23,6 +24,7 @@ u32 desmume_last_cycle;
|
|||
void desmume_init()
|
||||
{
|
||||
NDS_Init();
|
||||
SPU_ChangeSoundCore(SNDCORE_SDL, 735 * 4);
|
||||
execute = FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue