Core, UI, Windows: Removed excess converting C-string in params

This commit is contained in:
German Semenov
2023-09-15 13:54:11 +03:00
parent c2bf09744a
commit c498a42e92
10 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -343,7 +343,7 @@ namespace MainWindow {
Core_EnableStepping(false);
}
filename = ReplaceAll(filename, "\\", "/");
System_PostUIMessage("boot", filename.c_str());
System_PostUIMessage("boot", filename);
W32Util::MakeTopMost(GetHWND(), g_Config.bTopMost);
}