Skip to content

Commit

Permalink
fixed warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
andymanic committed Dec 5, 2023
1 parent a1a6751 commit 02b0239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OSRTT Launcher/OSRTT Launcher/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ public void Read()
this.firmVerLbl.Invoke((MethodInvoker)(() => this.firmVerLbl.Text = "V" + boardVersion));
if ((boardVersion < 3.2 && boardType == 0) || (boardVersion < 1.7 && boardType == 1))
{
MessageBox.Show("Incompatible Firmware Version","Warning - the FPS limmit feature won't work with your current firmware version.",MessageBoxButtons.OK, MessageBoxIcon.Hand);
MessageBox.Show("Warning - the FPS limit feature won't work with your current firmware version.", "Incompatible Firmware Version", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}
else if (message.Contains("Runs:"))
Expand Down

0 comments on commit 02b0239

Please sign in to comment.