mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-19 22:02:57 +01:00
Fix: convert console command rejects files with an SV7 extension
This commit is contained in:
@@ -22,6 +22,7 @@
|
|||||||
- Fix: [#24617] ‘Divide by zero’ error when updating boat hire acceleration.
|
- 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: [#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: [#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)
|
0.4.23 (2025-06-07)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ namespace OpenRCT2::RCT2
|
|||||||
{
|
{
|
||||||
return LoadScenario(path, skipObjectCheck);
|
return LoadScenario(path, skipObjectCheck);
|
||||||
}
|
}
|
||||||
if (String::iequals(extension, ".sv6"))
|
if (String::iequals(extension, ".sv6") || String::iequals(extension, ".sv7"))
|
||||||
{
|
{
|
||||||
return LoadSavedGame(path, skipObjectCheck);
|
return LoadSavedGame(path, skipObjectCheck);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user