From 9ba575fa8245608d5aec2b21e58471cc86892a8e Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 4 Aug 2008 17:05:29 +0000 Subject: [PATCH] Autofire fix, fceu.cpp was initializing to 0 instead of 1 (my silly mistake) --- src/fceu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fceu.cpp b/src/fceu.cpp index 6fae13e0..3cd5f729 100644 --- a/src/fceu.cpp +++ b/src/fceu.cpp @@ -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)