Skip to content

Commit

Permalink
use UGC19 as UGC20
Browse files Browse the repository at this point in the history
  • Loading branch information
Detanup01 authored Oct 20, 2024
1 parent 2f81f75 commit 2b0eefd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dll/steam_client_interface_getter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit 2b0eefd

Please sign in to comment.