This commit is contained in:
Glenn Maynard
2003-11-14 17:21:02 +00:00
parent 04db23649c
commit 400f8a45a5
2 changed files with 0 additions and 12 deletions
-11
View File
@@ -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
-1
View File
@@ -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);