Fix: Missing subversion bump after recent commit

The commit b9f253564e
accidentally didn't update the subversion
after merging with main.
This commit is contained in:
Falk David
2025-01-21 12:41:02 +01:00
parent 5e5c68fa62
commit 971ac4e896
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ extern "C" {
/* Blender file format version. */
#define BLENDER_FILE_VERSION BLENDER_VERSION
#define BLENDER_FILE_SUBVERSION 24
#define BLENDER_FILE_SUBVERSION 25
/* Minimum Blender version that supports reading file written with the current
* version. Older Blender versions will test this and cancel loading the file, showing a warning to

View File

@@ -1492,7 +1492,7 @@ void do_versions_after_linking_400(FileData *fd, Main *bmain)
}
}
if (!MAIN_VERSION_FILE_ATLEAST(bmain, 404, 24)) {
if (!MAIN_VERSION_FILE_ATLEAST(bmain, 404, 25)) {
LISTBASE_FOREACH (Scene *, scene, &bmain->scenes) {
if (!scene->adt) {
continue;