Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
JugadorXEI
Kart-Public
Commits
1c3fe3ce
Commit
1c3fe3ce
authored
Feb 06, 2019
by
Sal
Browse files
Kill me
parent
094ca524
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/k_kart.c
View file @
1c3fe3ce
...
...
@@ -1746,11 +1746,17 @@ fixed_t K_GetKartAccel(player_t *player)
UINT16
K_GetKartFlashing
(
player_t
*
player
)
{
UINT16
tics
=
flashingtics
;
if
(
G_BattleGametype
())
tics
*=
2
;
tics
+=
(
flashingtics
/
8
)
*
(
player
->
kartspeed
);
return
tics
;
UINT16
tics
=
flashingtics
;
if
(
!
player
)
return
tics
;
if
(
G_BattleGametype
())
tics
*=
2
;
tics
+=
(
flashingtics
/
8
)
*
(
player
->
kartspeed
);
return
tics
;
}
fixed_t
K_3dKartMovement
(
player_t
*
player
,
boolean
onground
,
fixed_t
forwardmove
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment