controls: Revert wording to 1.61 version.

Whole filename is more information. I shouldn't have
changed this.
This commit is contained in:
BearOso 2023-04-20 10:20:43 -05:00
parent 5188dd3b7c
commit 843c5ea4a9

View file

@ -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());