We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef326ab commit 1efc670Copy full SHA for 1efc670
Source/Core/Core/WiiRoot.cpp
@@ -238,7 +238,11 @@ void ShutdownWiiRoot()
238
if (Config::Get(Config::SYSCONF_SAVE_REPLAYS))
239
{
240
std::string s_brawl_temp_save = File::GetUserPath(D_USER_IDX) + "WiiSession" DIR_SEP + "title" DIR_SEP + "00010000" DIR_SEP + "52534245" DIR_SEP + "data" DIR_SEP;
241
- std::string replay_data = "./ReplayData";
+ #if defined(_WIN32)
242
+ std::string replay_data = "./ReplayData";
243
+ #else
244
+ std::string replay_data = File::GetUserPath(D_USER_IDX) + "ReplayData" DIR_SEP;
245
+ #endif
246
247
if (File::Exists(s_brawl_temp_save + "collect.vff"))
248
0 commit comments