Autofire fix, fceu.cpp was initializing to 0 instead of 1 (my silly mistake)

This commit is contained in:
adelikat 2008-08-04 17:05:29 +00:00
parent 37a5c13816
commit 9ba575fa82
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
#include "drivers/sdl/sdl.h"
#endif
int AFon, AFoff, AutoFireOffset = 0; //For keeping track of autofire settings
int AFon = 1, AFoff = 1, AutoFireOffset = 0; //For keeping track of autofire settings
bool justLagged = false;
FCEUGI::FCEUGI()
: filename(0)