Fixes: #189
@@ -12,6 +12,7 @@ Changelog
**Runtime**
* Animation state machines can now contain empty animation sets.
+* Data Compiler: fixed bundle generation.
0.51.0 --- 28 Oct 2024
----------------------
@@ -1240,7 +1240,7 @@ bool DataCompiler::compile(const char *data_dir, const char *platform_name)
bundle_fs.close(*outf);
if (success) {
- RenameResult rr = data_fs.rename(temp_dest.c_str(), dest.c_str());
+ RenameResult rr = bundle_fs.rename(temp_dest.c_str(), dest.c_str());
success = rr.error == RenameResult::SUCCESS;
}