diff --git a/src/SplashScreen.h b/src/SplashScreen.h index feffd25..c965db2 100644 --- a/src/SplashScreen.h +++ b/src/SplashScreen.h @@ -36,7 +36,9 @@ #include "config.h" -#include "ofxHapPlayer.h" +#ifndef TARGET_WIN32 + #include "ofxHapPlayer.h" +#endif class SplashScreen : public ofBaseApp{ @@ -48,7 +50,12 @@ class SplashScreen : public ofBaseApp{ void mousePressed(int x, int y, int button); - ofxHapPlayer background; + #ifndef TARGET_WIN32 + ofxHapPlayer background; + #else + ofVideoPlayer background; + #endif + ofTrueTypeFont font; ofTrueTypeFont fontSmall; size_t startTime;