fix linker error re SetSnapName

This commit is contained in:
zeromus 2008-12-12 17:39:27 +00:00
parent 63786ca82f
commit 408d0306b6
2 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ void SetDirs()
FCEUIOD_AVI,
FCEUIOD__COUNT};
FCEUI_SetSnapName(eoptions & EO_SNAPNAME);
FCEUI_SetSnapName((eoptions & EO_SNAPNAME)!=0);
for(x=0; x < sizeof(jlist) / sizeof(*jlist); x++)
{

View File

@ -798,7 +798,7 @@ void FCEUI_SetGameGenie(bool a)
FSettings.GameGenie = a;
}
void FCEUI_SetSnapName(int a)
void FCEUI_SetSnapName(bool a)
{
FSettings.SnapName = a;
}