From ca76fb28e9740092f0d5933f69590d9dd94dc5c5 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Fri, 13 Feb 2004 07:46:45 +0000 Subject: [PATCH] fix backwards compressed/uncompressed screenshot flag --- stepmania/src/StepMania.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 1fcd497e50..8f11416555 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -1204,8 +1204,8 @@ bool HandleGlobalInputs( DeviceInput DeviceI, InputEventType type, GameInput Gam INPUTFILTER->IsBeingPressed( DeviceInput(DEVICE_KEYBOARD, SDLK_LMETA))))) { // If holding LShift save a BMP, else save a JPG - bool bSaveBmp = INPUTFILTER->IsBeingPressed( DeviceInput(DEVICE_KEYBOARD, SDLK_LSHIFT) ); - SaveScreenshot( "Screenshots/", bSaveBmp ? RageDisplay::bmp : RageDisplay::jpg ); + bool bSaveUncompressed = INPUTFILTER->IsBeingPressed( DeviceInput(DEVICE_KEYBOARD, SDLK_LSHIFT) ); + SaveScreenshot( "Screenshots/", bSaveUncompressed ); return true; // handled }