From 7bf956400579bf5d1f7f9eea0f3412caa207104b Mon Sep 17 00:00:00 2001 From: otavepto Date: Tue, 19 Dec 2023 04:14:55 +0200 Subject: [PATCH] current app shouldn't be a DLC right? --- dll/steam_apps.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dll/steam_apps.cpp b/dll/steam_apps.cpp index ea8d5c1e..5a1fb931 100644 --- a/dll/steam_apps.cpp +++ b/dll/steam_apps.cpp @@ -91,6 +91,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? return settings->hasDLC(appID); }