Skip to content

Commit

Permalink
fixed missing _add param
Browse files Browse the repository at this point in the history
  • Loading branch information
manups4e committed Nov 23, 2020
1 parent b09baf2 commit 2290fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NativeUI/PauseMenu/TabMissionSelectItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public override void Draw()
}

new UIResRectangle(new PointF((int)Resolution.Width - SafeSize.X - (512 + _add), SafeSize.Y + 256), new SizeF(512, 40), Color.FromArgb(fullAlpha, Colors.Black)).Draw();
new UIResText(Heists[Index].Name, new PointF((int)Resolution.Width - SafeSize.X - 4, SafeSize.Y + 260), 0.5f, Color.FromArgb(fullAlpha, Colors.White),
new UIResText(Heists[Index].Name, new PointF((int)Resolution.Width - SafeSize.X - (4 + _add), SafeSize.Y + 260), 0.5f, Color.FromArgb(fullAlpha, Colors.White),
Font.HouseScript, Alignment.Right).Draw();

for (int i = 0; i < Heists[Index].ValueList.Count; i++)
Expand Down

0 comments on commit 2290fb2

Please sign in to comment.