Skip to content

Commit

Permalink
Fix little mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
gennariarmando committed May 29, 2023
1 parent f771669 commit 457b9ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/MenuNew.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ void CMenuNew::DrawLegendEntry(float x, float y, short id, CRGBA* col) {
if (id == RADAR_WAYPOINT) {
DrawWayPoint(x, y + ScaleY(4.0f), ScaleX(LEGEND_BLIP_SCALE), ScaleY(LEGEND_BLIP_SCALE), CRGBA(255, 0, 0, GetAlpha(255)));
}
else if (id < RADAR_DESTINATION) {
else if (id <= RADAR_DESTINATION) {
static int level = 0;
static int levelTime = 0;
CRGBA white = { 255, 255, 255, 255 };
Expand Down

0 comments on commit 457b9ac

Please sign in to comment.