1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

fix rct1_fix_paths

This commit is contained in:
IntelOrca
2015-07-14 21:07:27 +01:00
parent 48c5fe1626
commit dcbdc7cb3a

View File

@@ -743,6 +743,7 @@ static void rct1_fix_paths()
rct_map_element *mapElement;
int pathType, secondaryType, additions;
mapElement = gMapElements;
while (mapElement < RCT2_GLOBAL(0x0140E9A4, rct_map_element*)) {
switch (map_element_get_type(mapElement)) {
case MAP_ELEMENT_TYPE_PATH:
@@ -779,6 +780,7 @@ static void rct1_fix_paths()
}
break;
}
mapElement++;
}
}