1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Fix #12486: set-rct2 has a broken g1.dat check

This commit is contained in:
Sidney
2020-07-28 22:32:28 +02:00
committed by GitHub
parent 8490e87eeb
commit fbdd1042b8
3 changed files with 3 additions and 1 deletions

View File

@@ -367,7 +367,7 @@ static exitcode_t HandleCommandSetRCT2(CommandLineArgEnumerator* enumerator)
String::Set(pathG1Check, sizeof(pathG1Check), path);
Path::Append(pathG1Check, sizeof(pathG1Check), "Data");
Path::Append(pathG1Check, sizeof(pathG1Check), "g1.dat");
if (Platform::FileExists(pathG1Check))
if (!Platform::FileExists(pathG1Check))
{
Console::Error::WriteLine("RCT2 path not valid.");
Console::Error::WriteLine("Unable to find %s.", pathG1Check);