From 3ee7824df4c6fcbaacaed395d47c77e7a1fcd9f0 Mon Sep 17 00:00:00 2001 From: Ted John Date: Mon, 29 Jul 2019 19:17:49 +0100 Subject: [PATCH] Fix #9678: Korean scenario name is not saved (#9679) --- src/openrct2/rct2/S6Importer.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/openrct2/rct2/S6Importer.cpp b/src/openrct2/rct2/S6Importer.cpp index 21bcac2abe..18c7193472 100644 --- a/src/openrct2/rct2/S6Importer.cpp +++ b/src/openrct2/rct2/S6Importer.cpp @@ -449,6 +449,13 @@ public: gWidePathTileLoopY = _s6.wide_path_tile_loop_y; // pad_13CE778 + // Fix and set dynamic variables + map_strip_ghost_flag_from_elements(); + map_update_tile_pointers(); + game_convert_strings_to_utf8(); + map_count_remaining_land_rights(); + determine_ride_entrance_and_exit_locations(); + // Park name, must be after user strings are loaded // Eventually format_string should be something that the S6 user strings can be passed directly to { @@ -459,13 +466,6 @@ public: user_string_free(_s6.park_name); } - // Fix and set dynamic variables - map_strip_ghost_flag_from_elements(); - map_update_tile_pointers(); - game_convert_strings_to_utf8(); - map_count_remaining_land_rights(); - determine_ride_entrance_and_exit_locations(); - // We try to fix the cycles on import, hence the 'true' parameter check_for_sprite_list_cycles(true); check_for_spatial_index_cycles(true);