Added back mistakenly removed init time window hint clearing.

This commit is contained in:
Camilla Berglund 2010-09-16 17:48:50 +02:00
parent 40193213e5
commit 03f20ef736
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,10 @@ GLFWAPI int glfwInit(void)
memset(&_glfwLibrary, 0, sizeof(_glfwLibrary)); memset(&_glfwLibrary, 0, sizeof(_glfwLibrary));
// Not all window hints are cleared to zero, so this needs to be here
// despite the memset above
_glfwClearWindowHints();
if (!_glfwPlatformInit()) if (!_glfwPlatformInit())
{ {
_glfwPlatformTerminate(); _glfwPlatformTerminate();