23af3e8 from ishii

This commit is contained in:
R2DLiu 2020-07-25 17:03:23 -04:00
commit 09293d7fcf

View file

@ -112,8 +112,12 @@ void SlippiUser::OpenLogInPage()
std::string url = "https://slippi.gg/online/enable"; std::string url = "https://slippi.gg/online/enable";
std::string path = getUserFilePath(); std::string path = getUserFilePath();
#if defined(__APPLE__)
#else
path = ReplaceAll(path, "\\", folderSep); path = ReplaceAll(path, "\\", folderSep);
path = ReplaceAll(path, "/", folderSep); path = ReplaceAll(path, "/", folderSep);
#endif
std::string fullUrl = url + "?path=" + path; std::string fullUrl = url + "?path=" + path;
#ifdef _WIN32 #ifdef _WIN32