1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00

Merge pull request #15532 from CookiePLMonster/fix-15299

Fix #15299: Breakpad crash dumps are created in game directory
This commit is contained in:
ζeh Matt
2021-10-05 11:54:46 -07:00
committed by GitHub

View File

@@ -324,9 +324,9 @@ static bool OnCrash(
static std::wstring GetDumpDirectory()
{
auto env = GetContext()->GetPlatformEnvironment();
auto crashPath = env->GetDirectoryPath(DIRBASE::OPENRCT2, DIRID::CRASH);
auto crashPath = env->GetDirectoryPath(DIRBASE::USER, DIRID::CRASH);
auto result = String::ToWideChar(crashPath.c_str());
auto result = String::ToWideChar(crashPath);
return result;
}