Mercurial > sdl-ios-xcode
comparison src/video/ataricommon/SDL_atarievents.c @ 1209:a55ac374271c
Added preliminary missingtranslation from Atari to Unicode charset
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Sun, 01 Jan 2006 19:14:11 +0000 |
parents | 39b5606fa543 |
children | 8ef3e7e92a91 |
comparison
equal
deleted
inserted
replaced
1208:d90b362628ea | 1209:a55ac374271c |
---|---|
125 Atari_InitializeEvents(this); | 125 Atari_InitializeEvents(this); |
126 | 126 |
127 /* Call choosen routine */ | 127 /* Call choosen routine */ |
128 this->PumpEvents(this); | 128 this->PumpEvents(this); |
129 } | 129 } |
130 | |
131 Uint16 SDL_AtariToUnicode(Uint8 caracter) | |
132 { | |
133 /* Translate from Atari charset to Unicode */ | |
134 if ((caracter>=32) && (caracter<=127)) { | |
135 return (Uint16) caracter; | |
136 } | |
137 | |
138 return 0; | |
139 } |