diff --git a/stepmania/src/IniFile.h b/stepmania/src/IniFile.h index 857d4d16a8..3413661393 100644 --- a/stepmania/src/IniFile.h +++ b/stepmania/src/IniFile.h @@ -10,11 +10,6 @@ class RageFileBasic; class IniFile : public XNode { -private: - CString m_sPath; - - mutable CString m_sError; - public: IniFile(); @@ -46,6 +41,11 @@ public: * reading an INI where [foo] is an alias to [main]. If to already * exists, nothing happens. */ bool RenameKey( const CString &from, const CString &to ); + +private: + CString m_sPath; + + mutable CString m_sError; }; #endif