mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-03-28 14:56:24 +01:00
fix those requests
This commit is contained in:
parent
4390cc1616
commit
65521debe6
2 changed files with 3 additions and 3 deletions
|
@ -21,8 +21,8 @@
|
|||
#include "base.h"
|
||||
|
||||
class Steam_Video :
|
||||
public ISteamVideo,
|
||||
public ISteamVideo001
|
||||
public ISteamVideo001,
|
||||
public ISteamVideo
|
||||
{
|
||||
public:
|
||||
|
||||
|
|
|
@ -782,7 +782,7 @@ ISteamVideo *Steam_Client::GetISteamVideo( HSteamUser hSteamuser, HSteamPipe hSt
|
|||
PRINT_DEBUG("%s", pchVersion);
|
||||
if (!steam_pipes.count(hSteamPipe) || !hSteamuser) return NULL;
|
||||
|
||||
if (strcmp(pchVersion, "STEAMVIDEO_INTERFACE_V00") == 0) {
|
||||
if (strcmp(pchVersion, "STEAMVIDEO_INTERFACE_V001") == 0) {
|
||||
return reinterpret_cast<ISteamVideo *>(static_cast<ISteamVideo001 *>(steam_video));
|
||||
}
|
||||
else if (strcmp(pchVersion, STEAMVIDEO_INTERFACE_VERSION) == 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue