Skip to content

Commit 2e684c7

Browse files
author
Niko
committed
variable rename
1 parent f25b507 commit 2e684c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

decompile/WorkInProgress/src/VEHICLE/VehPhysGeneral_JumpAndFriction.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ void DECOMP_VehPhysGeneral_JumpAndFriction(struct Thread *t, struct Driver *d)
139139
// if player is over a quadblock
140140
(d->underDriver != 0)) &&
141141
(
142-
iVar3 = d->underDriver->speedImpact,
142+
iVar3 = d->underDriver->mulNormVecY,
143143
iVar3 != 0))
144144
{
145145
// player speed

include/namespace_Level.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ struct QuadBlock
201201
char terrain_type;
202202
char weather_intensity;
203203
char weather_vanishRate;
204-
char speedImpact;
204+
char mulNormVecY; // -127 for AntiGrav Sewer
205205

206206
// 0x3C
207207
short blockID;

mods/Levels/Legacy/levelBuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ enum Split
8686
.terrain_type = 0, \
8787
.weather_intensity = 0, \
8888
.weather_vanishRate = 0, \
89-
.speedImpact = 0, \
89+
.mulNormVecY = 0, \
9090
\
9191
.blockID = 0, \
9292
.checkpointIndex = qIndex, \

0 commit comments

Comments
 (0)