mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 06:44:38 +01:00
Fixed formatting
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 << ")";
|
||||
|
||||
Reference in New Issue
Block a user