Fix compilation on Linux.

Commit ce15044f73 introduced an error
"undefined reference to `sball_initialized'" on non-Windows operating
systems.
This commit is contained in:
Johannes Zarl 2015-07-10 16:31:42 +02:00
parent 85b23a7130
commit 989ceddc19

View File

@ -11,7 +11,7 @@
#include <GL/freeglut.h>
#include "fg_internal.h"
#if(_WIN32_WINNT >= 0x0501)
#if( !_WIN32 || _WIN32_WINNT >= 0x0501)
/* -- PRIVATE FUNCTIONS --------------------------------------------------- */