Merge pull request #2372 from jirogit/fix/region-save-return-value

fix(RegionMap): save() returns actual write success instead of hardcoded true
This commit is contained in:
Liam Cottle
2026-07-03 12:40:22 +12:00
committed by GitHub
+1 -1
View File
@@ -139,7 +139,7 @@ bool RegionMap::save(FILESYSTEM* _fs, const char* path) {
} }
} }
file.close(); file.close();
return true; return success;
} }
return false; // failed return false; // failed
} }