Fix lap split icon position
This commit is contained in:
parent
1ca099ae48
commit
b4be36df23
1 changed files with 3 additions and 3 deletions
|
|
@ -5282,7 +5282,7 @@ static void K_drawLapSplitTimestamp(void)
|
||||||
ahead >= 0 ? "-" : "+"
|
ahead >= 0 ? "-" : "+"
|
||||||
);
|
);
|
||||||
|
|
||||||
V_DrawMappedPatch(TIME_X - 8, TIME_Y + 3, splitflags, faceprefix[skin][FACE_MINIMAP], skincolor);
|
V_DrawMappedPatch(TIME_X, TIME_Y + 10, splitflags, faceprefix[skin][FACE_MINIMAP], skincolor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -5352,11 +5352,11 @@ static void K_drawLapSplitComparison(void)
|
||||||
INT32 stwidth = V_StringWidth(buffer, splitflags) / 2;
|
INT32 stwidth = V_StringWidth(buffer, splitflags) / 2;
|
||||||
|
|
||||||
// vibes offset
|
// vibes offset
|
||||||
V_DrawMappedPatch(row_position[0] - stwidth - 35, row_position[1], splitflags, faceprefix[skin][FACE_MINIMAP], skincolor);
|
V_DrawMappedPatch(row_position[0] - stwidth, row_position[1] + 4, splitflags, faceprefix[skin][FACE_MINIMAP], skincolor);
|
||||||
|
|
||||||
if (pos > 1)
|
if (pos > 1)
|
||||||
{
|
{
|
||||||
V_DrawPingNum(row_position[0] - stwidth - 35, row_position[1], splitflags, pos, NULL);
|
V_DrawPingNum(row_position[0] - stwidth, row_position[1], splitflags, pos, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
// vibes offset TWO
|
// vibes offset TWO
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue