Fixing the "fgDeinitialize" call properly per e-mail from John Tsiombikas dated 12...
authorJohn F. Fay <johnffay@nettally.com>
Tue, 20 Dec 2011 03:18:11 +0000 (03:18 +0000)
committerJohn F. Fay <johnffay@nettally.com>
Tue, 20 Dec 2011 03:18:11 +0000 (03:18 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@959 7f0cb862-5218-0410-a997-914c9d46530a

src/freeglut_init.c

index 44bb42f..8c254bc 100644 (file)
@@ -393,7 +393,7 @@ static void fghInitialize( const char* displayName )
 
     /* Avoid registering atexit callback on Win32 as it results in an access
      * violation due to calling into a module which has been unloaded. */
-#ifndef TARGET_HOST_MS_WINDOWS
+#if ( TARGET_HOST_MS_WINDOWS == 0 )
     atexit(fgDeinitialize);
 #endif