Fixed wxvbam Game Boy options not working

This commit is contained in:
Arthur Moore 2015-03-22 09:10:43 -04:00
parent 665fc71f91
commit e96db2c3ba
2 changed files with 4 additions and 3 deletions

View File

@ -1,10 +1,11 @@
#include <cstdlib>
#include "../common/Types.h"
#include "gbGlobals.h"
u8 *gbMemoryMap[16];
int gbRomSizeMask = 0;
int gbRomSize = 0;
unsigned int gbRomSize = 0;
int gbRamSizeMask = 0;
int gbRamSize = 0;
int gbTAMA5ramSize = 0;
@ -27,7 +28,7 @@ bool genericflashcardEnable = false;
int gbCgbMode = 0;
u16 gbColorFilter[32768];
int gbColorOption = 0;
bool gbColorOption = 0;
int gbPaletteOption = 0;
int gbEmulatorType = 0;
int gbBorderOn = 0;

View File

@ -25,7 +25,7 @@ extern u8 *gbMemoryMap[16];
extern int gbFrameSkip;
extern u16 gbColorFilter[32768];
extern int gbColorOption;
extern bool gbColorOption;
extern int gbPaletteOption;
extern int gbEmulatorType;
extern int gbBorderOn;