From 0c046d1721456a817334708bc4b226ebe91de682 Mon Sep 17 00:00:00 2001 From: divverent Date: Mon, 3 Aug 2015 17:14:47 +0000 Subject: [PATCH] Fix type of AdjustWindowBounds - this is C, not C++. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12219 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=97aa709c0a3e5a4374b24a638c14b01f3c8095c6 --- vid_wgl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vid_wgl.c b/vid_wgl.c index 79890553..70155a0c 100644 --- a/vid_wgl.c +++ b/vid_wgl.c @@ -216,7 +216,7 @@ static HINSTANCE hInstDI; // forward-referenced functions static void IN_StartupMouse (void); -static void AdjustWindowBounds(int fullscreen, int &width, int &height, viddef_mode_t *mode, DWORD WindowStyle, RECT &rect); +static void AdjustWindowBounds(int fullscreen, int *width, int *height, viddef_mode_t *mode, DWORD WindowStyle, RECT &rect); //==================================== @@ -1166,7 +1166,7 @@ qboolean VID_InitModeGL(viddef_mode_t *mode) ExWindowStyle = 0; } - AdjustWindowBounds(fullscreen, width, height, mode, WindowStyle, rect); + AdjustWindowBounds(fullscreen, &width, &height, mode, WindowStyle, rect); pixelformat = 0; newpixelformat = 0; @@ -1324,7 +1324,7 @@ qboolean VID_InitModeGL(viddef_mode_t *mode) return true; } -static void AdjustWindowBounds(int fullscreen, int &width, int &height, viddef_mode_t *mode, DWORD WindowStyle, RECT &rect) +static void AdjustWindowBounds(int fullscreen, int *width, int *height, viddef_mode_t *mode, DWORD WindowStyle, RECT &rect) { int CenterX, CenterY; @@ -1413,7 +1413,7 @@ qboolean VID_InitModeDX(viddef_mode_t *mode, int version) ExWindowStyle = 0; } - AdjustWindowBounds(fullscreen, width, height, mode, WindowStyle, rect); + AdjustWindowBounds(fullscreen, &width, &height, mode, WindowStyle, rect); gl_extensions = ""; gl_platformextensions = ""; @@ -1748,7 +1748,7 @@ qboolean VID_InitModeSOFT(viddef_mode_t *mode) ExWindowStyle = 0; } - AdjustWindowBounds(fullscreen, width, height, mode, WindowStyle, rect); + AdjustWindowBounds(fullscreen, &width, &height, mode, WindowStyle, rect); pixelformat = 0; newpixelformat = 0; -- 2.39.2