mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-07-08 01:25:17 +02:00
more accurate implementation for BGetSessionClientResolution
This commit is contained in:
parent
d02f32327e
commit
5c8a57e7af
1 changed files with 3 additions and 0 deletions
|
@ -103,6 +103,9 @@ ESteamDeviceFormFactor GetSessionClientFormFactor( uint32 unSessionID )
|
|||
bool BGetSessionClientResolution( uint32 unSessionID, int *pnResolutionX, int *pnResolutionY )
|
||||
{
|
||||
PRINT_DEBUG("Steam_RemotePlay::BGetSessionClientResolution\n");
|
||||
std::lock_guard<std::recursive_mutex> lock(global_mutex);
|
||||
if (pnResolutionX) *pnResolutionX = 0;
|
||||
if (pnResolutionY) *pnResolutionY = 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue