Skip to content

Commit

Permalink
Win32: Fix missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
bearoso committed May 7, 2024
1 parent 73cb801 commit bac6798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win32/wsnes9x.cpp
Expand Up @@ -731,7 +731,7 @@ static void ShowStatusSlotInfo()
{
static char str[64];

char filename[_MAX_PATH + 1]
char filename[_MAX_PATH + 1];
GetSlotFilename(GUI.CurrentSaveBank * SAVE_SLOTS_PER_BANK + GUI.CurrentSaveSlot, filename);

bool exists = false;
Expand Down

0 comments on commit bac6798

Please sign in to comment.