Mercurial > sdl-ios-xcode
comparison src/video/cybergfx/SDL_amigamouse.c @ 1336:3692456e7b0f
Use SDL_ prefixed versions of C library functions.
FIXME:
Change #include <stdlib.h> to #include "SDL_stdlib.h"
Change #include <string.h> to #include "SDL_string.h"
Make sure nothing else broke because of this...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 06:59:48 +0000 |
parents | c9b51268668f |
children | c71e05b4dc2e |
comparison
equal
deleted
inserted
replaced
1335:c39265384763 | 1336:3692456e7b0f |
---|---|
88 /* Use as raw mouse mickeys as possible */ | 88 /* Use as raw mouse mickeys as possible */ |
89 XGetPointerControl(SDL_Display, | 89 XGetPointerControl(SDL_Display, |
90 &mouse_accel.numerator, | 90 &mouse_accel.numerator, |
91 &mouse_accel.denominator, | 91 &mouse_accel.denominator, |
92 &mouse_accel.threshold); | 92 &mouse_accel.threshold); |
93 use_mouse_accel = getenv("SDL_VIDEO_X11_MOUSEACCEL"); | 93 use_mouse_accel = SDL_getenv("SDL_VIDEO_X11_MOUSEACCEL"); |
94 if ( use_mouse_accel ) { | 94 if ( use_mouse_accel ) { |
95 SetMouseAccel(this, use_mouse_accel); | 95 SetMouseAccel(this, use_mouse_accel); |
96 } | 96 } |
97 } | 97 } |
98 } else { | 98 } else { |