From 2166c35369efdba0393b23d7446361197e1b64c3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 20 Feb 2003 04:38:31 +0000 Subject: [PATCH] fixups --- stepmania/src/arch/MovieTexture/MovieTexture.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }