cleanup
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user