Turn screenshots (F3) off by default

This commit is contained in:
Jonas Kulla 2014-01-07 05:25:00 +01:00
parent 953f903149
commit 063793c4d9
3 changed files with 4 additions and 1 deletions

View file

@ -209,7 +209,7 @@ void EventThread::process(RGSSThreadData &rtData)
break;
}
if (event.key.keysym.scancode == SDL_SCANCODE_F3)
if (event.key.keysym.scancode == SDL_SCANCODE_F3 && rtData.config.screenshots)
rtData.rqScreenshot = true;
keyStates[event.key.keysym.scancode] = true;