some more s/GetSize/size/ and other minor STLisms
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
#include "MenuElements.h"
|
||||
|
||||
|
||||
const int MAX_MUSIC_LINES = 1200;
|
||||
const int MAX_CREDIT_LINES = 100;
|
||||
const int MAX_TOTAL_LINES = MAX_MUSIC_LINES + MAX_CREDIT_LINES;
|
||||
const unsigned MAX_MUSIC_LINES = 1200;
|
||||
const unsigned MAX_CREDIT_LINES = 100;
|
||||
const unsigned MAX_TOTAL_LINES = MAX_MUSIC_LINES + MAX_CREDIT_LINES;
|
||||
|
||||
|
||||
class ScreenMusicScroll : public Screen
|
||||
@@ -40,7 +40,7 @@ private:
|
||||
|
||||
BGAnimation m_Background;
|
||||
BitmapText m_textLines[MAX_TOTAL_LINES];
|
||||
int m_iNumLines;
|
||||
unsigned m_iNumLines;
|
||||
float m_fTimeLeftInScreen;
|
||||
|
||||
TransitionFade m_Fade;
|
||||
|
||||
Reference in New Issue
Block a user