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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user