Skip to content

Commit

Permalink
Switch keyboard shortcuts for screencapping
Browse files Browse the repository at this point in the history
  • Loading branch information
despoa committed Jul 25, 2017
1 parent 3559a5d commit 1ecde1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StepMania.cpp
Original file line number Diff line number Diff line change
@@ -1394,10 +1394,10 @@ bool HandleGlobalInputs( const InputEventPlus &input )
#endif
if( bDoScreenshot )
{
// If holding Shift save uncompressed, else save compressed
// If holding Shift save resized, else save normally
bool bHoldingShift = ( INPUTFILTER->IsBeingPressed( DeviceInput(DEVICE_KEYBOARD, KEY_LSHIFT) )
|| INPUTFILTER->IsBeingPressed( DeviceInput(DEVICE_KEYBOARD, KEY_RSHIFT) ) );
bool bSaveCompressed = !bHoldingShift;
bool bSaveCompressed = bHoldingShift;
RageTimer timer;
StepMania::SaveScreenshot("Screenshots/", bSaveCompressed, false, "", "");
LOG->Trace( "Screenshot took %f seconds.", timer.GetDeltaTime() );

0 comments on commit 1ecde1c

Please sign in to comment.