mirror of https://github.com/snes9xgit/snes9x.git
Merge remote-tracking branch 'refs/remotes/origin/msu1' into msu1
This commit is contained in:
commit
7c86cfd3e0
|
@ -136,6 +136,11 @@ snes9x_gtk_SOURCES += \
|
|||
../apu/bapu/smp/smp.cpp \
|
||||
../apu/bapu/smp/smp_state.cpp
|
||||
|
||||
# MSU1
|
||||
snes9x_gtk_SOURCES += \
|
||||
../msu1.cpp \
|
||||
../msu1.h
|
||||
|
||||
# DSP
|
||||
snes9x_gtk_SOURCES += \
|
||||
../dsp.cpp \
|
||||
|
|
|
@ -201,6 +201,7 @@
|
|||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "snes9x.h"
|
||||
#include "memmap.h"
|
||||
|
@ -1889,7 +1890,7 @@ bool8 CMemory::LoadMultiCartInt ()
|
|||
memmove(ROM + Multi.cartOffsetA, ROM, Multi.cartSizeA + Multi.cartSizeB);
|
||||
else if(Multi.cartOffsetB) // clear cart A so the bios can detect that it's not present
|
||||
memset(ROM, 0, Multi.cartOffsetB);
|
||||
|
||||
|
||||
FILE *fp;
|
||||
size_t size;
|
||||
char path[PATH_MAX + 1];
|
||||
|
|
Loading…
Reference in New Issue