mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 14:02:59 +01:00
Code style: Remove struct snakes from Paint (#18341)
This commit is contained in:
@@ -151,7 +151,7 @@ void VehicleCrashParticle::Serialise(DataSerialiser& stream)
|
||||
stream << acceleration_z;
|
||||
}
|
||||
|
||||
void VehicleCrashParticle::Paint(paint_session& session, int32_t imageDirection) const
|
||||
void VehicleCrashParticle::Paint(PaintSession& session, int32_t imageDirection) const
|
||||
{
|
||||
PROFILED_FUNCTION();
|
||||
|
||||
@@ -203,7 +203,7 @@ void CrashSplashParticle::Serialise(DataSerialiser& stream)
|
||||
stream << frame;
|
||||
}
|
||||
|
||||
void CrashSplashParticle::Paint(paint_session& session, int32_t imageDirection) const
|
||||
void CrashSplashParticle::Paint(PaintSession& session, int32_t imageDirection) const
|
||||
{
|
||||
PROFILED_FUNCTION();
|
||||
|
||||
@@ -262,7 +262,7 @@ void SteamParticle::Serialise(DataSerialiser& stream)
|
||||
stream << time_to_move;
|
||||
}
|
||||
|
||||
void SteamParticle::Paint(paint_session& session, int32_t imageDirection) const
|
||||
void SteamParticle::Paint(PaintSession& session, int32_t imageDirection) const
|
||||
{
|
||||
PROFILED_FUNCTION();
|
||||
|
||||
@@ -308,7 +308,7 @@ void ExplosionCloud::Serialise(DataSerialiser& stream)
|
||||
stream << frame;
|
||||
}
|
||||
|
||||
void ExplosionCloud::Paint(paint_session& session, int32_t imageDirection) const
|
||||
void ExplosionCloud::Paint(PaintSession& session, int32_t imageDirection) const
|
||||
{
|
||||
PROFILED_FUNCTION();
|
||||
|
||||
@@ -353,7 +353,7 @@ void ExplosionFlare::Serialise(DataSerialiser& stream)
|
||||
stream << frame;
|
||||
}
|
||||
|
||||
void ExplosionFlare::Paint(paint_session& session, int32_t imageDirection) const
|
||||
void ExplosionFlare::Paint(PaintSession& session, int32_t imageDirection) const
|
||||
{
|
||||
PROFILED_FUNCTION();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user