diff --git a/stepmania/src/arch/MovieTexture/MovieTexture.cpp b/stepmania/src/arch/MovieTexture/MovieTexture.cpp index 26db409251..5bb04fc4e3 100644 --- a/stepmania/src/arch/MovieTexture/MovieTexture.cpp +++ b/stepmania/src/arch/MovieTexture/MovieTexture.cpp @@ -1,8 +1,9 @@ #include "global.h" #include "MovieTexture.h" - +#if defined(WIN32) #include "MovieTexture_DShow.h" +#endif /* Try drivers in order of preference until we find one that works. */ /* Well, eventually; for now it's DShow or bust.w */ @@ -11,6 +12,7 @@ RageMovieTexture *MakeRageMovieTexture(RageTextureID ID) #if defined(WIN32) return new MovieTexture_DShow(ID); #else + /* XXX: need a simple null movie texture object */ RageException::Throw("xxx"); #endif }