diff options
author | RichieSams | 2013-10-01 20:13:02 -0500 |
---|---|---|
committer | RichieSams | 2013-10-04 09:20:25 -0500 |
commit | c73159150d75f9bf9996722838f8d114c9a66417 (patch) | |
tree | 8f062af9f42821e532b293bc16ebe4c9c9c75740 /video/codecs | |
parent | 23a1a1a70fd0481f17e49631e0884d7027d21528 (diff) | |
download | scummvm-rg350-c73159150d75f9bf9996722838f8d114c9a66417.tar.gz scummvm-rg350-c73159150d75f9bf9996722838f8d114c9a66417.tar.bz2 scummvm-rg350-c73159150d75f9bf9996722838f8d114c9a66417.zip |
ZVISION: Re-enable Truemotion plugin guard, but add a case for ZVISION
Diffstat (limited to 'video/codecs')
-rw-r--r-- | video/codecs/truemotion1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/video/codecs/truemotion1.h b/video/codecs/truemotion1.h index 39950b3ea6..6ac09af24b 100644 --- a/video/codecs/truemotion1.h +++ b/video/codecs/truemotion1.h @@ -22,8 +22,8 @@ // Based on the TrueMotion 1 decoder by Alex Beregszaszi & Mike Melanson in FFmpeg -// Only compile if SCI32 is enabled or if we're building dynamic modules -//#if defined(ENABLE_SCI32) || defined(DYNAMIC_MODULES) +// Only compile if SCI32 is enabled, ZVISION is enabled, or if we're building dynamic modules +#if defined(ENABLE_SCI32) || defined(ENABLE_ZVISION) || defined(DYNAMIC_MODULES) #ifndef VIDEO_CODECS_TRUEMOTION1_H #define VIDEO_CODECS_TRUEMOTION1_H @@ -106,4 +106,4 @@ private: } // End of namespace Video #endif // VIDEO_CODECS_TRUEMOTION1_H -//#endif // SCI32/Plugins guard +#endif // SCI32/Plugins guard |