OpenGL in prerequesites

This commit is contained in:
Eduardo Bart
2011-05-15 13:39:14 -03:00
parent 1ac08aa692
commit ca38f53e15
6 changed files with 6 additions and 16 deletions

View File

@@ -31,9 +31,6 @@
#include <physfs.h>
#include <GL/gl.h>
#include <GL/glext.h>
LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
struct Win32PlatformPrivate {
@@ -246,7 +243,7 @@ int Platform::getTicks()
static ulong firstTick = 0;
if(!firstTick)
firstTick = GetTickCount();
return (uint32_t)(GetTickCount() - firstTick);
}