diff --git a/ogl_editor/src/Editor.c b/ogl_editor/src/Editor.c index 977d786..a5e3374 100644 --- a/ogl_editor/src/Editor.c +++ b/ogl_editor/src/Editor.c @@ -836,9 +836,9 @@ static void setWindowTitle(const text_t* path, bool needsSave) text_t windowTitle[4096]; #if defined(_WIN32) if (needsSave) - swprintf_s(windowTitle, sizeof(windowTitle), L"RocketEditor" EDITOR_VERSION "- (%s) *", path); + swprintf_s(windowTitle, sizeof(windowTitle), L"RocketEditor" EDITOR_VERSION L"- (%s) *", path); else - swprintf_s(windowTitle, sizeof(windowTitle), L"RocketEditor" EDITOR_VERSION " - (%s)", path); + swprintf_s(windowTitle, sizeof(windowTitle), L"RocketEditor" EDITOR_VERSION L" - (%s)", path); #else if (needsSave) sprintf(windowTitle, "RocketEditor" EDITOR_VERSION "- (%s) *", path);