Add and enable SteamWorks GS Detours (+CDetour).

This commit is contained in:
KyleSanderson
2014-01-14 17:54:32 -07:00
parent 54b9500974
commit a39fdfc731
5 changed files with 127 additions and 1 deletions
+2
View File
@@ -48,6 +48,7 @@ bool SteamWorks::SDK_OnLoad(char *error, size_t maxlength, bool late)
this->pSWForward = new SteamWorksForwards;
this->pGSNatives = new SteamWorksGSNatives;
this->pGSHooks = new SteamWorksGSHooks;
this->pGSDetours = new SteamWorksGSDetours;
this->pSSNatives = new SteamWorksSSNatives;
return true;
}
@@ -55,6 +56,7 @@ bool SteamWorks::SDK_OnLoad(char *error, size_t maxlength, bool late)
void SteamWorks::SDK_OnUnload()
{
delete this->pSSNatives;
delete this->pGSDetours;
delete this->pGSHooks;
delete this->pGSNatives;
delete this->pSWForward;