1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix whitespace

This commit is contained in:
X7123M3-256
2016-06-04 21:36:27 +01:00
parent fc5b5966c8
commit bbd7e809fd

View File

@@ -474,13 +474,13 @@ static int cc_rides(const utf8 **argv, int argc)
console_printf("No ride entry found for given subtype");
} else {
rct_ride *ride = get_ride(ride_index);
if(ride->type != RIDE_TYPE_NULL) {
if (ride->type != RIDE_TYPE_NULL) {
ride->type = type;
if (int_valid[2]) {
ride->subtype = subtype;
}
} else {
console_printf("No ride found with index %d",ride_index);
console_printf("No ride found with index %d", ride_index);
}
}
}