[Scummvm-git-logs] scummvm master -> 8bd0a2b66008ad3afc14fdfc4da0d2fa237d931e
antoniou79
noreply at scummvm.org
Sun Feb 8 20:20:09 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
8bd0a2b660 IMAGE: Fix inclusion of MJPEG codec when JPEG support is enabled
Commit: 8bd0a2b66008ad3afc14fdfc4da0d2fa237d931e
https://github.com/scummvm/scummvm/commit/8bd0a2b66008ad3afc14fdfc4da0d2fa237d931e
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2026-02-08T22:19:49+02:00
Commit Message:
IMAGE: Fix inclusion of MJPEG codec when JPEG support is enabled
Changed paths:
image/codecs/codec.cpp
diff --git a/image/codecs/codec.cpp b/image/codecs/codec.cpp
index bce8ba524a9..41e6a539492 100644
--- a/image/codecs/codec.cpp
+++ b/image/codecs/codec.cpp
@@ -133,7 +133,7 @@ Codec *createBitmapCodec(uint32 tag, uint32 streamTag, int width, int height, in
#endif
case MKTAG('M','J','P','G'):
case MKTAG('m','j','p','g'):
-#ifdef USE_MJPEG
+#ifdef USE_JPEG
return new MJPEGDecoder();
#else
missingCodec = "MJPEG";
More information about the Scummvm-git-logs
mailing list