2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-26 11:49:25 +01:00

client: fix GetCenterWindow engine call

This commit is contained in:
a1batross 2018-11-29 20:24:19 +03:00
parent 05eab0b5b0
commit 137836348b

View File

@ -1949,7 +1949,21 @@ GetWindowCenterX
*/ */
static int pfnGetWindowCenterX( void ) static int pfnGetWindowCenterX( void )
{ {
return host.window_center_x; int x = 0;
#ifdef _WIN32
if( m_ignore->value )
{
POINT pos;
GetCursorPos( &pos );
return pos.x;
}
#endif
#ifdef XASH_SDL
SDL_GetWindowPosition( host.hWnd, &x, NULL );
#endif
return host.window_center_x + x;
} }
/* /*
@ -1960,7 +1974,21 @@ GetWindowCenterY
*/ */
static int pfnGetWindowCenterY( void ) static int pfnGetWindowCenterY( void )
{ {
return host.window_center_y; int y = 0;
#ifdef _WIN32
if( m_ignore->value )
{
POINT pos;
GetCursorPos( &pos );
return pos.y;
}
#endif
#ifdef XASH_SDL
SDL_GetWindowPosition( host.hWnd, NULL, &y );
#endif
return host.window_center_y + y;
} }
/* /*