Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kaetemi authored and nimetu committed Aug 28, 2024
1 parent da20dcb commit dd1d03f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nel/include/nel/sound/audio_mixer_user.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

// Current version is 2, Ryzom Live uses 1
// Provided to allow compatibility with old binary files
#define NLSOUND_SHEET_VERSION_BUILT 1
#define NLSOUND_SHEET_VERSION_BUILT 2

namespace NLLIGO {
class CLigoConfig;
Expand Down
4 changes: 3 additions & 1 deletion nel/src/3d/mesh_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ void CMeshBase::serialMeshBase(NLMISC::IStream &f)
* ***********************************************/

/*
Version 10:
- Ryzom Core release check
Version 9:
- _CollisionMeshGeneration
Version 8:
Expand All @@ -197,7 +199,7 @@ void CMeshBase::serialMeshBase(NLMISC::IStream &f)
Version 0:
- 1st version.
*/
sint ver = f.serialVersion(9);
sint ver = f.serialVersion(10);

if (ver >= 2)
{
Expand Down
4 changes: 3 additions & 1 deletion nel/src/3d/zone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,8 @@ void CZone::serial(NLMISC::IStream &f)
* It can be loaded/called through CAsyncFileManager for instance
* ***********************************************/
/*
Version 5:
- Ryzom Core release check
Version 4:
- PointLights
Version 3:
Expand All @@ -456,7 +458,7 @@ void CZone::serial(NLMISC::IStream &f)
Version 0:
- base verison.
*/
uint ver= f.serialVersion(4);
uint ver= f.serialVersion(5);

// No more compatibility before version 3
if (ver<3)
Expand Down

0 comments on commit dd1d03f

Please sign in to comment.