Only save high quality jpeg screenshots.
Removing the case where `StepMania::SaveScreenshot` may request to save a low quality jpeg. The file size difference between a quality 70 and quality 95 jpeg is very small by modern storage standards.
This commit is contained in:
+1
-3
@@ -1077,9 +1077,7 @@ RString StepMania::SaveScreenshot( RString Dir, bool SaveCompressed, bool MakeSi
|
||||
// Save the screenshot. If writing lossy to a memcard, use
|
||||
// SAVE_LOSSY_LOW_QUAL, so we don't eat up lots of space.
|
||||
RageDisplay::GraphicsFileFormat fmt;
|
||||
if( SaveCompressed && MEMCARDMAN->PathIsMemCard(Dir) )
|
||||
fmt = RageDisplay::SAVE_LOSSY_LOW_QUAL;
|
||||
else if( SaveCompressed )
|
||||
if( SaveCompressed )
|
||||
fmt = RageDisplay::SAVE_LOSSY_HIGH_QUAL;
|
||||
else
|
||||
fmt = RageDisplay::SAVE_LOSSLESS_SENSIBLE;
|
||||
|
||||
Reference in New Issue
Block a user