This commit is contained in:
Mr_Goldberg 2022-08-05 01:32:20 -04:00
parent 0fc5a564e1
commit ba877b6e78
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
9 changed files with 44 additions and 1 deletions

View file

@ -337,3 +337,10 @@ bool Steam_Apps::BIsTimedTrial( uint32* punSecondsAllowed, uint32* punSecondsPla
PRINT_DEBUG("BIsTimedTrial\n");
return false;
}
// set current DLC AppID being played (or 0 if none). Allows Steam to track usage of major DLC extensions
bool Steam_Apps::SetDlcContext( AppId_t nAppID )
{
PRINT_DEBUG("SetDlcContext %u\n", nAppID);
return true;
}