SDL: Fix indentation.

This commit is contained in:
Johannes Schickel 2011-10-01 15:53:15 +02:00
parent 3ac1240b6a
commit 5ea975ad0c

View file

@ -438,11 +438,11 @@ bool SdlEventSource::handleKeyDown(SDL_Event &ev, Common::Event &event) {
}
#ifdef WIN32
// On Windows, also use the default Alt-F4 quit combination
if ((ev.key.keysym.mod & KMOD_ALT) && ev.key.keysym.sym == SDLK_F4) {
event.type = Common::EVENT_QUIT;
return true;
}
// On Windows, also use the default Alt-F4 quit combination
if ((ev.key.keysym.mod & KMOD_ALT) && ev.key.keysym.sym == SDLK_F4) {
event.type = Common::EVENT_QUIT;
return true;
}
#endif
#endif