Fixed C2275 compiler error in fg_spaceball_mswin.c

- Known to only affect Visual Studio 2010. Visual Studio 2013 and up may have relaxed the error.
This commit is contained in:
John Archdeacon 2015-12-13 16:59:39 -05:00 committed by Rcmaniac25
parent 836fe46441
commit 6b8552edbd

View File

@ -64,6 +64,7 @@ void fgPlatformInitializeSpaceball(void)
} }
hwnd = fgStructure.CurrentWindow->Window.Handle; hwnd = fgStructure.CurrentWindow->Window.Handle;
{
BOOL ok; BOOL ok;
UINT cbSize = sizeof(__fgSpaceball); UINT cbSize = sizeof(__fgSpaceball);
__fgSpaceball.hwndTarget = hwnd; __fgSpaceball.hwndTarget = hwnd;
@ -74,6 +75,7 @@ void fgPlatformInitializeSpaceball(void)
sball_initialized = 0; sball_initialized = 0;
} }
} }
}
void fgPlatformSpaceballClose(void) void fgPlatformSpaceballClose(void)
{ {
@ -138,7 +140,7 @@ void fgSpaceballHandleWinEvent(HWND hwnd, WPARAM wParam, LPARAM lParam)
res = GetRawInputDeviceInfo(pRawInput->header.hDevice, RIDI_DEVICEINFO, &sRidDeviceInfo, &size); res = GetRawInputDeviceInfo(pRawInput->header.hDevice, RIDI_DEVICEINFO, &sRidDeviceInfo, &size);
if (res == -1) if (res == -1)
return; return;
{
SFG_Window* window = fgWindowByHandle(hwnd); SFG_Window* window = fgWindowByHandle(hwnd);
if ((window == NULL)) if ((window == NULL))
return; return;
@ -192,5 +194,6 @@ void fgSpaceballHandleWinEvent(HWND hwnd, WPARAM wParam, LPARAM lParam)
} }
} }
} }
}
#endif #endif