Autofire fix, fceu.cpp was initializing to 0 instead of 1 (my silly mistake)
This commit is contained in:
parent
37a5c13816
commit
9ba575fa82
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue