From bccafc6bec6e9e399814772ec6d74a5c0f1b09c1 Mon Sep 17 00:00:00 2001 From: Ben Anderson Date: Wed, 27 Aug 2003 01:30:32 +0000 Subject: [PATCH] Changed the screenshot key to F11 so that at least it works in Linux. Feel free to think of a better solution. --- stepmania/src/StepMania.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 0035e738f9..3ded00b02a 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -694,7 +694,7 @@ bool HandleGlobalInputs( DeviceInput DeviceI, InputEventType type, GameInput Gam #ifndef DARWIN /* XXX: Er, this doesn't work; Windows traps this key and takes a screenshot * into the clipboard. I don't want to disable that, though; it's useful. */ - if(DeviceI == DeviceInput(DEVICE_KEYBOARD, SDLK_SYSREQ)) + if(DeviceI == DeviceInput(DEVICE_KEYBOARD, SDLK_F11)) #else if(DeviceI == DeviceInput(DEVICE_KEYBOARD, SDLK_KP_MULTIPLY)) #endif