Skip to content

Commit

Permalink
controls: Revert wording to 1.61 version.
Browse files Browse the repository at this point in the history
Whole filename is more information. I shouldn't have
changed this.
  • Loading branch information
bearoso committed Apr 20, 2023
1 parent 5188dd3 commit 843c5ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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());
Expand Down

0 comments on commit 843c5ea

Please sign in to comment.