Fixed Windows build for r3271.

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3272 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 228ea024012e8f2787e03963040bbea83b66d9a6
Former-commit-id: 9c08526893af83f9bb15ae6c43f9c1a795ac1038
This commit is contained in:
pouillot 2011-01-17 19:47:42 +00:00
parent 397eebd6dd
commit 9b7ae09628
3 changed files with 3 additions and 3 deletions

View file

@ -81,7 +81,6 @@ static void *PrevHandle = NULL;
void OpenGLLoadSelectedFeatures()
{
int i;
char buf[512];
// Read OpenGL configuration from graph.xml, and select relevant OpenGL features.

View file

@ -22,7 +22,7 @@
// Multi-plateform Open GL includes : use this header files when calling OpenGL
#ifdef WIN32
//# include <windows.h>
# include <windows.h>
#endif //WIN32
#ifdef __APPLE__

View file

@ -29,11 +29,12 @@
#include <vector>
#include <map>
#ifdef MSVC
#ifdef _MSC_VER
// Disable useless MSVC warnings
# pragma warning (disable:4244)
# pragma warning (disable:4996)
# pragma warning (disable:4305)
# pragma warning (disable:4251) // class XXX needs a DLL interface ...
#endif
#ifdef WIN32