# HG changeset patch # User Ryan C. Gordon # Date 1184508885 0 # Node ID f19931785c4201bd75729f3a589a4ac4ff8eafc6 # Parent 86746036a6d6badde87ee070c20334d9b3331e6d An attempt at fixing Bugzilla #454. diff -r 86746036a6d6 -r f19931785c42 src/video/maccommon/SDL_macevents.c --- a/src/video/maccommon/SDL_macevents.c Sun Jul 15 14:05:31 2007 +0000 +++ b/src/video/maccommon/SDL_macevents.c Sun Jul 15 14:14:45 2007 +0000 @@ -159,8 +159,8 @@ /* Check the current state of the keyboard */ if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { KeyMap keys; - const Uint8 *keysptr = (Uint8 *) keys; - const Uint8 *last_keysptr = (Uint8 *) last_keys; + const Uint32 *keysptr = (Uint32 *) &keys; + const Uint32 *last_keysptr = (Uint32 *) &last_keys; /* Check for special non-event keys */ if ( event.modifiers != last_mods ) {