diff options
author | Matthew Hoops | 2014-05-26 11:01:11 -0400 |
---|---|---|
committer | Matthew Hoops | 2014-05-26 11:01:59 -0400 |
commit | ec38016044e674fadc0e8b370afd5cd25110b392 (patch) | |
tree | 3c452567c8b7e2682a8aef01c35e2f86f2b33378 /image | |
parent | ef22b7d449b66a7b953e0584c6ab5db9bdd948b9 (diff) | |
download | scummvm-rg350-ec38016044e674fadc0e8b370afd5cd25110b392.tar.gz scummvm-rg350-ec38016044e674fadc0e8b370afd5cd25110b392.tar.bz2 scummvm-rg350-ec38016044e674fadc0e8b370afd5cd25110b392.zip |
IMAGE: Fix compiling in truemotion
Diffstat (limited to 'image')
-rw-r--r-- | image/codecs/codec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/image/codecs/codec.cpp b/image/codecs/codec.cpp index 530fb3b836..64acf3f169 100644 --- a/image/codecs/codec.cpp +++ b/image/codecs/codec.cpp @@ -58,7 +58,7 @@ Codec *createBitmapCodec(uint32 tag, int width, int height, int bitsPerPixel) { return new CinepakDecoder(bitsPerPixel); case MKTAG('I','V','3','2'): return new Indeo3Decoder(width, height); -#ifdef VIDEO_CODECS_TRUEMOTION1_H +#ifdef IMAGE_CODECS_TRUEMOTION1_H case MKTAG('D','U','C','K'): case MKTAG('d','u','c','k'): return new TrueMotion1Decoder(width, height); |