X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_cursor.c;h=23839a5d51b31487576d20f0424242e90acb5cfd;hb=9c3c848ff232b56793bef2d91d29283ff80326b4;hp=bda8083ec91a7dbc5e370f691e5cfbbb69afb1d8;hpb=7d0fc844c337b9c8901317d6935c3462b59ceda5;p=freeglut diff --git a/src/freeglut_cursor.c b/src/freeglut_cursor.c index bda8083..23839a5 100644 --- a/src/freeglut_cursor.c +++ b/src/freeglut_cursor.c @@ -29,7 +29,7 @@ #include "config.h" #endif -#include "../include/GL/freeglut.h" +#include #include "freeglut_internal.h" #if TARGET_HOST_UNIX_X11 @@ -253,7 +253,10 @@ void FGAPIENTRY glutWarpPointer( int x, int y ) #elif TARGET_HOST_WIN32 { - POINT coords = { x, y }; + POINT coords; + coords.x = x; + coords.y = y; + /* * ClientToScreen() translates {coords} for us. */