Skip to content

Commit

Permalink
Merge pull request #378 from farmerbriantee/YouTurn
Browse files Browse the repository at this point in the history
You turn
  • Loading branch information
farmerbriantee authored Feb 19, 2024
2 parents 2d31426 + 35566e7 commit 9fdd6dc
Show file tree
Hide file tree
Showing 4 changed files with 165 additions and 170 deletions.
4 changes: 2 additions & 2 deletions SourceCode/AgIO/Source/Classes/CGLM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static bool CheckValue(this NumericUpDown numericUpDown, ref decimal valu
if (value < numericUpDown.Minimum)
{
value = numericUpDown.Minimum;
MessageBox.Show("Serious Settings Problem with - " + numericUpDown.Name
MessageBox.Show("Serious Settings Problem With - " + numericUpDown.Name
+ " \n\rMinimum has been exceeded\n\rDouble check ALL your Settings and \n\rFix it and Resave Vehicle File",
"Critical Settings Warning",
MessageBoxButtons.OK,
Expand All @@ -21,7 +21,7 @@ public static bool CheckValue(this NumericUpDown numericUpDown, ref decimal valu
{
value = numericUpDown.Maximum;
MessageBox.Show("Serious Settings Problem with - " + numericUpDown.Name
+ " \n\rMaximum has been exceeded\n\rDouble check ALL your Settings and \n\rFix it and Resave Vehicle File",
+ " \n\rMaximum has been exceeded\n\rDouble Check ALL your Settings and \n\rFix it and Resave Vehicle File",
"Critical Settings Warning",
MessageBoxButtons.OK,
MessageBoxIcon.Error);
Expand Down
Loading

0 comments on commit 9fdd6dc

Please sign in to comment.