diff --git a/stepmania/src/global.h b/stepmania/src/global.h index fbc6a9d3c4..e01aa64a66 100644 --- a/stepmania/src/global.h +++ b/stepmania/src/global.h @@ -147,9 +147,6 @@ 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 -/* XXX remove */ -#define SLASH "/" - /* Don't include our own headers here, since they tend to change often. */ #endif