and more of the same
This commit is contained in:
@@ -41,4 +41,4 @@ protected:
|
||||
bool m_bExtraStage; // cycle BPM through random values if extra stage
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -35,4 +35,4 @@ public:
|
||||
void TweenOnScreen();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -81,4 +81,4 @@ void HoldJudgement::SetHoldJudgement( HoldNoteScore hns )
|
||||
m_sprJudgement.BeginTweening( m_fDisplayTime/3.0f );
|
||||
m_sprJudgement.SetTweenZoom( 1.0f );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ void InputMapper::ReadMappingsFromDisk()
|
||||
CStringArray sDeviceInputStrings;
|
||||
split( value, ",", sDeviceInputStrings, false );
|
||||
|
||||
for( unsigned i=0; i<sDeviceInputStrings.size() && i<NUM_GAME_TO_DEVICE_SLOTS; i++ )
|
||||
for( unsigned i=0; i<sDeviceInputStrings.size() && i<unsigned(NUM_GAME_TO_DEVICE_SLOTS); i++ )
|
||||
{
|
||||
DeviceInput DeviceI;
|
||||
DeviceI.fromString( sDeviceInputStrings[i] );
|
||||
|
||||
@@ -111,4 +111,4 @@ void Judgement::SetJudgement( TapNoteScore score )
|
||||
// m_sprJudgement.BeginTweening( JUDGEMENT_DISPLAY_TIME/5.0f );
|
||||
// m_sprJudgement.SetTweenZoom( 1 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,4 +35,4 @@ protected:
|
||||
float m_fDisplayCountdown;
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -36,4 +36,4 @@ public:
|
||||
int GetNumSongs() const { return m_ContentsText[CurGroup].m_iNumSongsInGroup; }
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@@ -80,4 +80,4 @@ void MusicStatusDisplay::DrawPrimitives()
|
||||
ASSERT(0);
|
||||
}
|
||||
Sprite::DrawPrimitives();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -686,8 +686,9 @@ void MusicWheel::RebuildWheelItemDisplays()
|
||||
int iIndex = m_iSelection;
|
||||
if( m_iSelection > int(GetCurWheelItemDatas().size()-1) )
|
||||
m_iSelection = 0;
|
||||
|
||||
for( int i=0; i<NUM_WHEEL_ITEMS_TO_DRAW/2; i++ )
|
||||
|
||||
int i;
|
||||
for( i=0; i<NUM_WHEEL_ITEMS_TO_DRAW/2; i++ )
|
||||
{
|
||||
do
|
||||
{
|
||||
@@ -774,7 +775,7 @@ void MusicWheel::Update( float fDeltaTime )
|
||||
ActorFrame::Update( fDeltaTime );
|
||||
|
||||
unsigned i;
|
||||
for( i=0; i<NUM_WHEEL_ITEMS_TO_DRAW; i++ )
|
||||
for( i=0; i<int(NUM_WHEEL_ITEMS_TO_DRAW); i++ )
|
||||
{
|
||||
WheelItemDisplay& display = m_WheelItemDisplays[i];
|
||||
|
||||
|
||||
@@ -405,7 +405,8 @@ void NoteData::CropToLeftSide()
|
||||
int iLastRightSideColumn = 7;
|
||||
|
||||
// clear out the right half
|
||||
for( int c=iFirstRightSideColumn; c<=iLastRightSideColumn; c++ )
|
||||
int c;
|
||||
for( c=iFirstRightSideColumn; c<=iLastRightSideColumn; c++ )
|
||||
{
|
||||
for( int i=0; i<MAX_TAP_NOTE_ROWS; i++ ) // foreach TapNote
|
||||
SetTapNote(c, i, TAP_EMPTY);
|
||||
|
||||
@@ -192,8 +192,10 @@ struct RageVertex
|
||||
|
||||
/* 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
|
||||
{
|
||||
@@ -259,6 +261,8 @@ public:
|
||||
};
|
||||
};
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning (pop)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -19,7 +19,7 @@ class RandomSample
|
||||
{
|
||||
public:
|
||||
RandomSample();
|
||||
~RandomSample();
|
||||
virtual ~RandomSample();
|
||||
|
||||
virtual bool Load( CString sFilePath )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user