Fixed formatting

This commit is contained in:
LordOfLunacy 2022-05-13 19:59:47 -04:00
parent 45013a90cc
commit eddda64e20
4 changed files with 2 additions and 7 deletions

View File

@ -9,6 +9,7 @@
#include "GameState.h"
#include "./peep/GuestPathfinding.h"
#include "Context.h"
#include "Editor.h"
#include "Game.h"
@ -27,7 +28,6 @@
#include "localisation/Localisation.h"
#include "management/NewsItem.h"
#include "network/network.h"
#include "./peep/GuestPathfinding.h"
#include "platform/Platform.h"
#include "profiling/Profiling.h"
#include "ride/Vehicle.h"

View File

@ -81,7 +81,6 @@ static void* _crowdSoundChannel = nullptr;
static void peep_128_tick_update(Peep* peep, int32_t index);
static void peep_release_balloon(Guest* peep, int16_t spawn_height);
static PeepActionSpriteType PeepSpecialSpriteToSpriteTypeMap[] = {
PeepActionSpriteType::None,
PeepActionSpriteType::HoldMat,

View File

@ -17,8 +17,6 @@ struct Peep;
struct Guest;
struct TileElement;
// The tile position of the place the peep is trying to get to (park entrance/exit, ride
// entrance/exit, or the end of the queue line for a ride).
//
@ -55,7 +53,6 @@ public:
//
// Returns 0 if the guest has successfully had a new destination set up, nonzero otherwise.
virtual int32_t guest_path_finding(Guest* peep) = 0;
};
class OriginalPathfinding : public GuestPathfinding
@ -73,7 +70,7 @@ private:
int32_t GuestPathFindParkEntranceLeaving(Peep* peep, uint8_t edges);
};
//TODO: Implement a better solution than a global variable for the utilized pathfinder
// TODO: Implement a better solution than a global variable for the utilized pathfinder
extern GuestPathfinding* gGuestPathfinder;
#if defined(DEBUG_LEVEL_1) && DEBUG_LEVEL_1

View File

@ -16,7 +16,6 @@
using namespace OpenRCT2;
static std::ostream& operator<<(std::ostream& os, const TileCoordsXYZ& coords)
{
return os << "(" << coords.x << ", " << coords.y << ", " << coords.z << ")";