mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix incorrect count on Add-Ons menu
This commit is contained in:
parent
2b2b20718f
commit
2bd83082e4
1 changed files with 1 additions and 1 deletions
|
|
@ -6739,7 +6739,7 @@ void M_DrawAddons(void)
|
|||
if (modifiedgame)
|
||||
V_DrawSmallScaledPatch(x, y, 0, addonsp[NUM_EXT+2]);
|
||||
|
||||
m = numwadfiles-(mainwads+musicwads+1);
|
||||
m = numwadfiles-(mainwads+musicwads);
|
||||
|
||||
V_DrawCenteredMenuString(BASEVIDWIDTH/2, y+4, (majormods ? highlightflags : V_TRANSLUCENT), va("%ld ADD-ON%s LOADED", (long)m, (m == 1) ? "" : "S")); //+2 for music, sounds, +1 for bios.pk3
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue