mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 00:15:14 +01:00
This commit is contained in:
parent
671aa8d6b4
commit
f61b07866a
@ -1499,7 +1499,7 @@ static int FindGameSaveNum(char * savefile, int method)
|
||||
}
|
||||
else if(savefile[romlen] == ' ')
|
||||
{
|
||||
if(diff == 5 && strncmp((const char *)savefile[romlen+1], "Auto", 4) == 0)
|
||||
if(diff == 5 && strncmp(&savefile[romlen+1], "Auto", 4) == 0)
|
||||
n = 0; // found Auto save
|
||||
else if(diff == 2 || diff == 3)
|
||||
n = atoi(&savefile[romlen+1]);
|
||||
@ -2134,7 +2134,7 @@ static int MenuSettingsMappings()
|
||||
superscopeBtn.SetEffectGrow();
|
||||
|
||||
GuiText mouseBtnTxt("SNES Mouse", 24, (GXColor){0, 0, 0, 255});
|
||||
mouseBtnTxt.SetWrap(true, btnLargeOutline.GetWidth()-30);
|
||||
mouseBtnTxt.SetWrap(true, btnLargeOutline.GetWidth()-40);
|
||||
GuiImage mouseBtnImg(&btnLargeOutline);
|
||||
GuiImage mouseBtnImgOver(&btnLargeOutlineOver);
|
||||
GuiImage mouseBtnIcon(&iconMouse);
|
||||
|
Loading…
Reference in New Issue
Block a user