const fix
This commit is contained in:
@@ -70,7 +70,7 @@ static CString AddPart( float level, CString name )
|
||||
return LevelStr + name + ", ";
|
||||
}
|
||||
|
||||
CString PlayerOptions::GetString()
|
||||
CString PlayerOptions::GetString() const
|
||||
{
|
||||
CString sReturn;
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ struct PlayerOptions
|
||||
PlayerOptions() { Init(); };
|
||||
void Init();
|
||||
void Approach( const PlayerOptions& other, float fDeltaSeconds );
|
||||
CString GetString();
|
||||
CString GetString() const;
|
||||
void FromString( CString sOptions );
|
||||
void ChooseRandomMofifiers();
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ void SongOptions::Init()
|
||||
m_bSaveScore = true;
|
||||
}
|
||||
|
||||
CString SongOptions::GetString()
|
||||
CString SongOptions::GetString() const
|
||||
{
|
||||
CString sReturn;
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ struct SongOptions
|
||||
|
||||
SongOptions() { Init(); };
|
||||
void Init();
|
||||
CString GetString();
|
||||
CString GetString() const;
|
||||
void FromString( CString sOptions );
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user