IMAGE: CODECS: Plug QT RAW decoder

This commit is contained in:
Eugene Sandulenko 2020-08-10 12:46:38 +02:00
parent 3c5f17dca8
commit 2999977154

View file

@ -273,6 +273,9 @@ Codec *createQuickTimeCodec(uint32 tag, int width, int height, int bitsPerPixel)
case MKTAG('Q','k','B','k'):
// CDToons: Used by most of the Broderbund games.
return new CDToonsDecoder(width, height);
case MKTAG('r','a','w',' '):
// Used my L-Zone-mac (Director game)
return new BitmapRawDecoder(width, height, bitsPerPixel);
default:
warning("Unsupported QuickTime codec \'%s\'", tag2str(tag));
}