Fix direction dot and color
This commit is contained in:
parent
3db50f6b6b
commit
c68b60a67a
1 changed files with 9 additions and 0 deletions
|
|
@ -3664,6 +3664,15 @@ static void K_drawKartMinimap(void)
|
|||
{
|
||||
angle_t ang = R_InterpolateAngle(mobj->old_angle, mobj->angle);
|
||||
|
||||
if (encoremode)
|
||||
ang = ANGLE_180 - ang;
|
||||
|
||||
if (skin && mobj->color && !mobj->colorized // relevant to redo
|
||||
&& skins[skin].starttranscolor != skins[0].starttranscolor) // redoing would have an affect
|
||||
{
|
||||
colormap = R_GetTranslationColormap(TC_DEFAULT, mobj->color, GTC_CACHE);
|
||||
}
|
||||
|
||||
interpx = R_InterpolateFixed(mobj->old_x, mobj->x);
|
||||
interpy = R_InterpolateFixed(mobj->old_y, mobj->y);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue