And missing comma.

This commit is contained in:
Brandon Wright 2019-02-19 14:31:32 -06:00
parent be64fcf518
commit f211d878a5
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ void S9xRestoreWindowTitle ()
if (Memory.ROMFilename[0])
{
char def[_MAX_FNAME];
_splitpath(Memory.ROMFilename, NULL, NULL def, NULL);
_splitpath(Memory.ROMFilename, NULL, NULL, def, NULL);
_stprintf(buf, TEXT("%s - %s %s"), (wchar_t *)Utf8ToWide(def), WINDOW_TITLE, TEXT(VERSION));
}
else