diff --git a/Makefile.mingw b/Makefile.mingw index 335360079b5..a00947c0646 100644 --- a/Makefile.mingw +++ b/Makefile.mingw @@ -38,6 +38,10 @@ EXEEXT :=.exe # Compile options - you can modify these to tweak ScummVM compilation # ####################################################################### +# Uncomment this to activate the MPEG2 lib for Broken Sword II cut scenes +DEFINES += -DUSE_MPEG2 +LIBS += -lmpeg2 + # Uncomment this to activate the ZLIB lib for compressed save game files DEFINES += -DUSE_ZLIB LIBS += -lz diff --git a/sword2/driver/animation.h b/sword2/driver/animation.h index 8060303a4ca..0f48d9a4b9e 100644 --- a/sword2/driver/animation.h +++ b/sword2/driver/animation.h @@ -1,6 +1,9 @@ #ifndef ANIMATION_H #define ANIMATION_H +#ifndef _MSC_VER +#include +#endif #ifdef USE_MPEG2 extern "C" { #include