1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Fix switch brace syntax

This commit is contained in:
Ted John
2017-01-26 23:32:46 +00:00
parent 62d1d55ed5
commit f3fc09cb9a

View File

@@ -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: