diff src/video/riscos/SDL_riscosevents.c @ 1379:c0a74f199ecf

Use only safe string functions
author Sam Lantinga <slouken@libsdl.org>
date Sun, 19 Feb 2006 23:46:34 +0000
parents 19418e4422cb
children d910939febfa
line wrap: on
line diff
--- a/src/video/riscos/SDL_riscosevents.c	Sun Feb 19 23:38:57 2006 +0000
+++ b/src/video/riscos/SDL_riscosevents.c	Sun Feb 19 23:46:34 2006 +0000
@@ -101,7 +101,7 @@
 	int i;
 
 	/* Map the VK keysyms */
-	for ( i=0; i<SDL_TABLESIZE(RO_keymap); ++i )
+	for ( i=0; i<SDL_arraysize(RO_keymap); ++i )
 		RO_keymap[i] = SDLK_UNKNOWN;
 
   RO_keymap[3] = SDLK_LSHIFT;