diff --git a/stepmania/src/global.h b/stepmania/src/global.h index d1822d4f0b..fbc6a9d3c4 100644 --- a/stepmania/src/global.h +++ b/stepmania/src/global.h @@ -147,17 +147,8 @@ inline float truncf( float f ) { return float(int(f)); }; inline float roundf( float f ) { if(f < 0) return truncf(f-0.5f); return truncf(f+0.5f); }; #endif -#ifdef _XBOX -#include -#include -#include -#endif - -#if defined(_XBOX) - #define SLASH "\\" -#else - #define SLASH "/" -#endif +/* XXX remove */ +#define SLASH "/" /* Don't include our own headers here, since they tend to change often. */