mirror of https://github.com/snes9xgit/snes9x.git
controls: Revert wording to 1.61 version.
Whole filename is more information. I shouldn't have changed this.
This commit is contained in:
parent
5188dd3b7c
commit
843c5ea4a9
|
@ -2301,7 +2301,7 @@ void S9xApplyCommand (s9xcommand_t cmd, int16 data1, int16 data2)
|
|||
|
||||
if (S9xUnfreezeGame(filename.c_str()))
|
||||
{
|
||||
snprintf(buf, 256, "Quick save-state %s loaded", ext.c_str());
|
||||
snprintf(buf, 256, "%s loaded", S9xBasename(filename).c_str());
|
||||
S9xSetInfoString(buf);
|
||||
}
|
||||
else
|
||||
|
@ -2328,7 +2328,7 @@ void S9xApplyCommand (s9xcommand_t cmd, int16 data1, int16 data2)
|
|||
|
||||
auto filename = S9xGetFilename(ext, SNAPSHOT_DIR);
|
||||
|
||||
snprintf(buf, 256, "Quick save-state %s saved", ext.c_str());
|
||||
snprintf(buf, 256, "%s saved", S9xBasename(filename).c_str());
|
||||
S9xSetInfoString(buf);
|
||||
|
||||
S9xFreezeGame(filename.c_str());
|
||||
|
|
Loading…
Reference in New Issue