summaryrefslogtreecommitdiff
path: root/src/glut/fbdev/callback.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/glut/fbdev/callback.c')
-rw-r--r--src/glut/fbdev/callback.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/glut/fbdev/callback.c b/src/glut/fbdev/callback.c
index 37373672d3..8c039f530b 100644
--- a/src/glut/fbdev/callback.c
+++ b/src/glut/fbdev/callback.c
@@ -24,6 +24,8 @@
* Written by Sean D'Epagnier (c) 2006
*/
+#include <stdlib.h>
+
#include <GL/glut.h>
#include "internal.h"
@@ -72,19 +74,16 @@ void glutKeyboardUpFunc(void (*func)(unsigned char key, int x, int y))
void glutMouseFunc(void (*func)(int button, int state, int x, int y))
{
- MouseEnabled = 1;
MouseFunc = func;
}
void glutMotionFunc(void (*func)(int x, int y))
{
- MouseEnabled = 1;
MotionFunc = func;
}
void glutPassiveMotionFunc(void (*func)(int x, int y))
{
- MouseEnabled = 1;
PassiveMotionFunc = func;
}