fix steamapps folder case

This commit is contained in:
Ricardo Luís Vaz Silva 2023-07-05 21:31:43 -03:00 committed by Rachael Alexanderson
parent e23bb092b4
commit 7e8bb6ea30

View file

@ -187,7 +187,7 @@ TArray<FString> I_GetSteamPath()
return result;
}
SteamInstallFolders.Push(appSupportPath + "/Steam/SteamApps/common");
SteamInstallFolders.Push(appSupportPath + "/Steam/steamapps/common");
#else
char* home = getenv("HOME");
if(home != NULL && *home != '\0')
@ -210,7 +210,7 @@ TArray<FString> I_GetSteamPath()
return result;
}
regPath.Format("%s/.local/share/Steam/SteamApps/common", home);
regPath.Format("%s/.local/share/Steam/steamapps/common", home);
SteamInstallFolders.Push(regPath);
}
#endif