From f3fc09cb9a5052741183b7297b6e85a618d06353 Mon Sep 17 00:00:00 2001 From: Ted John Date: Thu, 26 Jan 2017 23:32:46 +0000 Subject: [PATCH] Fix switch brace syntax --- src/openrct2/rct1/S4Importer.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/openrct2/rct1/S4Importer.cpp b/src/openrct2/rct1/S4Importer.cpp index 0abd206821..9f5011bce4 100644 --- a/src/openrct2/rct1/S4Importer.cpp +++ b/src/openrct2/rct1/S4Importer.cpp @@ -2351,8 +2351,7 @@ private: { rct_map_element * currentElement; - switch(_s4.scenario_slot_index) - { + switch(_s4.scenario_slot_index) { case SC_KATIES_DREAMLAND: currentElement = map_get_surface_element_at(74, 70); currentElement->properties.surface.ownership |= OWNERSHIP_AVAILABLE; @@ -2388,9 +2387,7 @@ private: continue; uint8 trackType = mapElement->properties.track.type; - - switch (trackType) - { + switch (trackType) { case TRACK_ELEM_25_DEG_UP_TO_FLAT: case TRACK_ELEM_60_DEG_UP_TO_FLAT: case TRACK_ELEM_DIAG_25_DEG_UP_TO_FLAT: