Removed return value of _glfwPlatformTerminate.

This commit is contained in:
Camilla Berglund
2012-12-30 01:15:48 +01:00
parent 0dd5d20c77
commit 9af61d06cf
5 changed files with 5 additions and 12 deletions
+1 -3
View File
@@ -200,7 +200,7 @@ int _glfwPlatformInit(void)
// Close window and shut down library
//========================================================================
int _glfwPlatformTerminate(void)
void _glfwPlatformTerminate(void)
{
// Restore the original gamma ramp
if (_glfwLibrary.rampChanged)
@@ -220,8 +220,6 @@ int _glfwPlatformTerminate(void)
SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,
UIntToPtr(_glfwLibrary.Win32.foregroundLockTimeout),
SPIF_SENDCHANGE);
return GL_TRUE;
}