comparison src/video/riscos/SDL_riscosevents.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 19418e4422cb
comparison
equal deleted inserted replaced
1335:c39265384763 1336:3692456e7b0f
208 RO_keymap[121] = SDLK_RIGHT; 208 RO_keymap[121] = SDLK_RIGHT;
209 RO_keymap[122] = SDLK_KP4; 209 RO_keymap[122] = SDLK_KP4;
210 RO_keymap[123] = SDLK_KP5; 210 RO_keymap[123] = SDLK_KP5;
211 RO_keymap[124] = SDLK_KP2; 211 RO_keymap[124] = SDLK_KP2;
212 212
213 memset(RO_pressed, 0, ROKEYBD_ARRAYSIZE); 213 SDL_memset(RO_pressed, 0, ROKEYBD_ARRAYSIZE);
214 } 214 }
215 215
216 216
217 /* Variable for mouse relative processing */ 217 /* Variable for mouse relative processing */
218 int mouse_relative = 0; 218 int mouse_relative = 0;