(svn r21282) -Codechange: Rename CheckSavegameVersionOldStyle() to IsSavegameVersionBefore().

This commit is contained in:
alberth
2010-11-21 12:31:16 +00:00
parent 2974141641
commit edef25d30c
6 changed files with 18 additions and 18 deletions

View File

@@ -453,7 +453,7 @@ typedef SaveLoad SaveLoadGlobVarList;
* @param minor Minor number of the version to check against.
* @return Savegame version is less than the \a major version, or has equal \a major version and a smaller \a minor version.
*/
static inline bool CheckSavegameVersionOldStyle(uint16 major, byte minor)
static inline bool IsSavegameVersionBefore(uint16 major, byte minor)
{
extern uint16 _sl_version;
extern byte _sl_minor_version;