diff --git a/src/posix/i_steam.cpp b/src/posix/i_steam.cpp index 15265a6e0..5945dff3a 100644 --- a/src/posix/i_steam.cpp +++ b/src/posix/i_steam.cpp @@ -187,7 +187,7 @@ TArray 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 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