aboutsummaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorOri Avtalion2011-04-28 14:04:58 +0300
committerOri Avtalion2011-04-28 14:05:45 +0300
commit845db59e088796df6628fcadb263ddc75f00f691 (patch)
tree1461f77095d4e07e33fac4ec0b869b30eab8feaa /video
parent4924c12b854d84aca57f1d0921ba1d2cc4abbb67 (diff)
downloadscummvm-rg350-845db59e088796df6628fcadb263ddc75f00f691.tar.gz
scummvm-rg350-845db59e088796df6628fcadb263ddc75f00f691.tar.bz2
scummvm-rg350-845db59e088796df6628fcadb263ddc75f00f691.zip
VIDEO: Fix incorrect, renamed, guard for TrueMotion1 support
Diffstat (limited to 'video')
-rw-r--r--video/avi_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/avi_decoder.cpp b/video/avi_decoder.cpp
index 715741f41d..db33f1fb8a 100644
--- a/video/avi_decoder.cpp
+++ b/video/avi_decoder.cpp
@@ -407,7 +407,7 @@ Codec *AviDecoder::createCodec() {
case ID_IV32:
return new Indeo3Decoder(_bmInfo.width, _bmInfo.height);
#endif
-#ifdef GRAPHICS_TRUEMOTION1_H
+#ifdef VIDEO_CODECS_TRUEMOTION1_H
case ID_DUCK:
return new TrueMotion1Decoder(_bmInfo.width, _bmInfo.height);
#endif