mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 23:55:38 +00:00
(Windows) Fixed a compile error.
This commit is contained in:
parent
9683c9c9a5
commit
a3b8241e1e
|
@ -68,7 +68,7 @@ GuiMetaDataEd::GuiMetaDataEd(
|
||||||
if (folderPath.size() >= 2) {
|
if (folderPath.size() >= 2) {
|
||||||
folderPath.erase(0, 1);
|
folderPath.erase(0, 1);
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
folderPath.push_back('\');
|
folderPath.push_back('\\');
|
||||||
folderPath = Utils::String::replace(folderPath, "/", "\\");
|
folderPath = Utils::String::replace(folderPath, "/", "\\");
|
||||||
#else
|
#else
|
||||||
folderPath.push_back('/');
|
folderPath.push_back('/');
|
||||||
|
|
Loading…
Reference in a new issue