From 9830ca3561304ef598d469e7203f88465bf108ce Mon Sep 17 00:00:00 2001 From: Ted John Date: Sun, 14 Aug 2016 14:48:47 +0100 Subject: [PATCH] Format code for #ifdefs in ride_ratings.c --- src/ride/ride_ratings.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ride/ride_ratings.c b/src/ride/ride_ratings.c index 4921a33e96..69c6577fdd 100644 --- a/src/ride/ride_ratings.c +++ b/src/ride/ride_ratings.c @@ -598,14 +598,14 @@ static void ride_ratings_calculate(rct_ride *ride) calcFunc(ride); } - #ifdef ORIGINAL_RATINGS +#ifdef ORIGINAL_RATINGS if (ride->ratings.excitement != -1) { // Address underflows allowed by original RCT2 code ride->ratings.excitement = max(0, ride->ratings.excitement); ride->ratings.intensity = max(0, ride->ratings.intensity); ride->ratings.nausea = max(0, ride->ratings.nausea); } - #endif +#endif } static void ride_ratings_calculate_value(rct_ride *ride) @@ -761,7 +761,7 @@ static void ride_ratings_apply_adjustments(rct_ride *ride, rating_tuple *ratings ratings->nausea += ((ratings->nausea * rideEntry->nausea_multipler ) >> 7); // Apply total air time - #ifdef ORIGINAL_RATINGS +#ifdef ORIGINAL_RATINGS if (RideData4[ride->type].flags & RIDE_TYPE_FLAG4_HAS_AIR_TIME) { uint16 totalAirTime = ride->total_air_time; if (rideEntry->flags & RIDE_ENTRY_FLAG_11) { @@ -775,7 +775,7 @@ static void ride_ratings_apply_adjustments(rct_ride *ride, rating_tuple *ratings ratings->nausea += totalAirTime / 16; } } - #else +#else if (RideData4[ride->type].flags & RIDE_TYPE_FLAG4_HAS_AIR_TIME) { if (rideEntry->flags & RIDE_ENTRY_FLAG_11) { // Limit airtime bonus for heartline twister coaster (see issues #2031 and #2064) @@ -785,7 +785,7 @@ static void ride_ratings_apply_adjustments(rct_ride *ride, rating_tuple *ratings } ratings->nausea += ride->total_air_time / 16; } - #endif +#endif } /**