1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-08-14 11:25:36 +02:00

Merge branch 'Detanup01:dev' into dev

This commit is contained in:
alex47exe 2024-10-21 00:19:06 +01:00 committed by GitHub
commit 493cf75376
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -740,6 +740,8 @@ ISteamUGC *Steam_Client::GetISteamUGC( HSteamUser hSteamUser, HSteamPipe hSteamP
return reinterpret_cast<ISteamUGC *>(static_cast<ISteamUGC017 *>(steam_ugc_temp));
} else if (strcmp(pchVersion, "STEAMUGC_INTERFACE_VERSION018") == 0) {
return reinterpret_cast<ISteamUGC *>(static_cast<ISteamUGC018 *>(steam_ugc_temp));
} else if (strcmp(pchVersion, "STEAMUGC_INTERFACE_VERSION019") == 0) {
return reinterpret_cast<ISteamUGC *>(static_cast<ISteamUGC *>(steam_ugc_temp));
} else if (strcmp(pchVersion, STEAMUGC_INTERFACE_VERSION) == 0) {
return reinterpret_cast<ISteamUGC *>(static_cast<ISteamUGC *>(steam_ugc_temp));
}