From 5a7fa86310a19f4c7c300db50d670e0c08880fb5 Mon Sep 17 00:00:00 2001 From: bitsynth <16806072+bitsynth@users.noreply.github.com> Date: Sat, 16 Mar 2024 21:45:23 +0000 Subject: [PATCH] fix Age of Empires 2: Definitive Edition this game expects the current app to exist as a owned DLC. if not true, the game will only load the "Return of Rome" game mode, if that DLC is owned, or load the base game with most options disabled if it is not --- dll/steam_apps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/steam_apps.cpp b/dll/steam_apps.cpp index cef70a7d..02361b31 100644 --- a/dll/steam_apps.cpp +++ b/dll/steam_apps.cpp @@ -93,7 +93,7 @@ bool Steam_Apps::BIsDlcInstalled( AppId_t appID ) std::lock_guard lock(global_mutex); if (appID == 0) return true; if (appID == UINT32_MAX) return false; // check Steam_Apps::BIsAppInstalled() - if (appID == settings->get_local_game_id().AppID()) return false; //TODO is this correct? + if (appID == settings->get_local_game_id().AppID()) return true; //TODO is this correct? return settings->hasDLC(appID); }