This commit is contained in:
jeblanchard 2008-05-30 01:58:38 +00:00
parent 2fed26a75a
commit bdf11aafa5
2 changed files with 1 additions and 3 deletions

View File

@ -571,7 +571,6 @@ Config::parse(int argc,
int int
Config::_load() Config::_load()
{ {
int error;
unsigned int pos, eqPos; unsigned int pos, eqPos;
std::fstream config; std::fstream config;
std::map<std::string, int>::iterator int_i; std::map<std::string, int>::iterator int_i;
@ -639,7 +638,6 @@ Config::_load()
int int
Config::save() Config::save()
{ {
int error;
std::fstream config; std::fstream config;
std::map<std::string, int>::iterator int_i; std::map<std::string, int>::iterator int_i;
std::map<std::string, double>::iterator dbl_i; std::map<std::string, double>::iterator dbl_i;

View File

@ -9,7 +9,7 @@ bool autoInfo1003 = true; //This is a hacky variable that checks when dialog 100
extern FCEUGI *GameInfo; extern FCEUGI *GameInfo;
//retains the state of the readonly checkbox and stopframe value //retains the state of the readonly checkbox and stopframe value
bool replayReadOnlySetting; int replayReadOnlySetting;
int replayStopFrameSetting = 0; int replayStopFrameSetting = 0;
void RefreshThrottleFPS(); void RefreshThrottleFPS();