1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +01:00

Revert stray changes

This commit is contained in:
Gymnasiast
2021-09-26 20:00:42 +02:00
parent 8f97730a5e
commit ea4c9681b5
4 changed files with 3 additions and 4 deletions

View File

@@ -237,7 +237,7 @@ std::vector<std::unique_ptr<ImageTable::RequiredImage>> ImageTable::LoadObjectIm
// Log place holder information
if (placeHoldersAdded > 0)
{
std::string msg = "PAdding " + std::to_string(placeHoldersAdded) + " placeholders";
std::string msg = "Adding " + std::to_string(placeHoldersAdded) + " placeholders";
context->LogWarning(ObjectError::InvalidProperty, msg.c_str());
}
}

View File

@@ -14,8 +14,6 @@
#include "../../drawing/LightFX.h"
#include "../../interface/Viewport.h"
#include "../../localisation/Localisation.h"
#include "../../object/FootpathObject.h"
#include "../../object/FootpathSurfaceObject.h"
#include "../../object/StationObject.h"
#include "../../ride/RideData.h"
#include "../../ride/TrackDesign.h"

View File

@@ -44,7 +44,7 @@ static int8_t TopSpinSeatPositionOffset[] = {
*/
static void top_spin_paint_vehicle(
paint_session* session, int32_t al, int32_t cl, const Ride* ride, uint8_t direction, int32_t height,
const TrackElement& trackElement)
const TrackElement& tileElement)
{
if (ride == nullptr)
return;

View File

@@ -460,6 +460,7 @@ static void paint_monorail_station(
{
uint32_t imageId;
const StationObject* stationObject = nullptr;
if (ride != nullptr)
stationObject = ride_get_station_object(ride);