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:
sukibaby
2025-03-10 22:39:26 -07:00
committed by teejusb
parent d6e8e0ba7f
commit 22216f02e3
+1 -3
View File
@@ -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;