fix compile error, change RString to const RString& because I can; again, PLEASE try to compile your build before committing it :|
This commit is contained in:
@@ -206,8 +206,8 @@ protected:
|
||||
void GetMusicEndTiming( float &fSecondsToStartFadingOutMusic, float &fSecondsToStartTransitioningOut );
|
||||
void LoadLights();
|
||||
void PauseGame( bool bPause, GameController gc = GameController_Invalid );
|
||||
void PlayAnnouncer( RString type, float fSeconds, float *fDeltaSeconds );
|
||||
void PlayAnnouncer( RString type, float fSeconds ) { PlayAnnouncer(type, fSeconds, &m_fTimeSinceLastDancingComment) };
|
||||
void PlayAnnouncer( const RString &type, float fSeconds, float *fDeltaSeconds );
|
||||
void PlayAnnouncer( const RString &type, float fSeconds ) { PlayAnnouncer(type, fSeconds, &m_fTimeSinceLastDancingComment); }
|
||||
void UpdateLights();
|
||||
void SendCrossedMessages();
|
||||
void BeginBackingOutFromGameplay();
|
||||
|
||||
Reference in New Issue
Block a user