current app shouldn't be a DLC right?

This commit is contained in:
otavepto 2023-12-19 04:14:55 +02:00
parent 9393518dfa
commit 7bf9564005

View File

@ -91,6 +91,7 @@ bool Steam_Apps::BIsDlcInstalled( AppId_t appID )
std::lock_guard<std::recursive_mutex> 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);
}