From f211d878a59c6eb3604e0747af3b1ceace8a9bbc Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Tue, 19 Feb 2019 14:31:32 -0600 Subject: [PATCH] And missing comma. --- win32/wsnes9x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/wsnes9x.cpp b/win32/wsnes9x.cpp index b7bc13de..ac93f79c 100644 --- a/win32/wsnes9x.cpp +++ b/win32/wsnes9x.cpp @@ -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