mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
Add fill backing to podium
This commit is contained in:
parent
b4a8249b68
commit
0ea4f8c98a
1 changed files with 10 additions and 0 deletions
|
|
@ -551,6 +551,12 @@ void podiumData_s::Draw(void)
|
||||||
|
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
{
|
{
|
||||||
|
drawer_line
|
||||||
|
.xy(-88, 6)
|
||||||
|
.width(304)
|
||||||
|
.height(2)
|
||||||
|
.fill(31);
|
||||||
|
|
||||||
lvl = &rank.levels[i - 1];
|
lvl = &rank.levels[i - 1];
|
||||||
|
|
||||||
if (lvl->id > 0)
|
if (lvl->id > 0)
|
||||||
|
|
@ -747,6 +753,10 @@ void podiumData_s::Draw(void)
|
||||||
drawer_totals_right = drawer_totals_right.x( transition_i * BASEVIDWIDTH );
|
drawer_totals_right = drawer_totals_right.x( transition_i * BASEVIDWIDTH );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
drawer_totals_left
|
||||||
|
.xy(8.0, 8.0)
|
||||||
|
.patch("R_RTPBR");
|
||||||
|
|
||||||
skincolornum_t continuesColor = SKINCOLOR_NONE;
|
skincolornum_t continuesColor = SKINCOLOR_NONE;
|
||||||
if (rank.continuesUsed == 0)
|
if (rank.continuesUsed == 0)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue