1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 01:22:25 +01:00

Fix: convert console command rejects files with an SV7 extension

This commit is contained in:
Gymnasiast
2025-06-24 01:00:41 +02:00
parent f7612d56d0
commit f5acd2ba24
2 changed files with 2 additions and 1 deletions

View File

@@ -22,6 +22,7 @@
- Fix: [#24617] Divide by zero error when updating boat hire acceleration.
- Fix: [#24626] Viewports that only follow sprites (e.g. in the Ride and Guest windows) can be made to unfollow them.
- Fix: [#24661] `convert` console command always crashes with a segmentation fault.
- Fix: [#24666] `convert` console command rejects files with an SV7 extension.
0.4.23 (2025-06-07)
------------------------------------------------------------------------

View File

@@ -128,7 +128,7 @@ namespace OpenRCT2::RCT2
{
return LoadScenario(path, skipObjectCheck);
}
if (String::iequals(extension, ".sv6"))
if (String::iequals(extension, ".sv6") || String::iequals(extension, ".sv7"))
{
return LoadSavedGame(path, skipObjectCheck);
}