Switch declaration and definition of autoFireMaxCount to let gvbam build (hopefully).

This commit is contained in:
xkiv 2008-11-29 11:19:27 +00:00
parent f1d9fecd27
commit 4e286c724a
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ static int sdlSoundToggledOff = 0;
int sdl_patch_num = 0; int sdl_patch_num = 0;
char * (sdl_patch_names[PATCH_MAX_NUM]) = { NULL }; // and so on char * (sdl_patch_names[PATCH_MAX_NUM]) = { NULL }; // and so on
int autoFireMaxCount = 1; extern int autoFireMaxCount;
#define REWIND_NUM 8 #define REWIND_NUM 8
#define REWIND_SIZE 400000 #define REWIND_SIZE 400000

View File

@ -54,7 +54,7 @@ static EPad sdlDefaultJoypad = PAD_MAIN;
static int autoFire = 0; static int autoFire = 0;
static bool autoFireToggle = false; static bool autoFireToggle = false;
static int autoFireCountdown = 0; static int autoFireCountdown = 0;
extern int autoFireMaxCount; int autoFireMaxCount = 1;
static uint32_t joypad[5][SDLBUTTONS_NUM] = { static uint32_t joypad[5][SDLBUTTONS_NUM] = {
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },