SDL: Make first param of OSystem_SDL::remapKey const

svn-id: r45791
This commit is contained in:
Max Horn 2009-11-09 23:29:33 +00:00
parent a1496515ce
commit 9d816caf56
12 changed files with 12 additions and 12 deletions

View file

@ -459,7 +459,7 @@ bool OSystem_SDL::pollEvent(Common::Event &event) {
return false;
}
bool OSystem_SDL::remapKey(SDL_Event &ev, Common::Event &event) {
bool OSystem_SDL::remapKey(const SDL_Event &ev, Common::Event &event) {
#ifdef LINUPY
// On Yopy map the End button to quit
if ((ev.key.keysym.sym == 293)) {