diff --git a/stepmania/src/RageTypes.h b/stepmania/src/RageTypes.h index 2855a50564..312af5f943 100644 --- a/stepmania/src/RageTypes.h +++ b/stepmania/src/RageTypes.h @@ -214,13 +214,6 @@ struct RageModelVertex // doesn't have color. Relies on material color RageVector2 t; // texture coordinates }; -/* nonstandard extension used : nameless struct/union - * It is, in fact, nonstandard. G++ 3.x can handle it. 2.95.x can not. XXX */ -#if defined(_MSC_VER) -#pragma warning (push) -#pragma warning (disable : 4201) -#endif - struct RageMatrix { public: @@ -269,8 +262,4 @@ public: float m[4][4]; }; -#if defined(_MSC_VER) -#pragma warning (pop) -#endif - #endif diff --git a/stepmania/src/SnapDisplay.cpp b/stepmania/src/SnapDisplay.cpp index 4298c27011..d0033c5227 100644 --- a/stepmania/src/SnapDisplay.cpp +++ b/stepmania/src/SnapDisplay.cpp @@ -58,7 +58,6 @@ bool SnapDisplay::PrevSnapMode() bool SnapDisplay::NextSnapMode() { if( m_NoteType == NOTE_TYPE_64TH ) // this is the smallest snap we should allow - // MD 11/02/03 - changed to 64ths because support for 48ths and 64ths comes in today. return false; m_NoteType = NoteType(m_NoteType+1);