Skip to content

Commit

Permalink
change required noexs version back to 152
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Jan 26, 2021
1 parent cc814aa commit a41482a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PointerSearcher/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ private void getstatus_Click( object sender, EventArgs e )
c = s.Receive( b );
count = BitConverter.ToInt32( k, 0 );
statusBox.Text = Convert.ToString( b[0] ) + " . " + Convert.ToString( b[1] ) + " . " + Convert.ToString( b[2] ) + " . " + Convert.ToString( b[3] );
if ( b[3] >= 153 ) { statusBox.BackColor = System.Drawing.Color.LightGreen; }
if ( b[3] >= 152 ) { statusBox.BackColor = System.Drawing.Color.LightGreen; }
else
{
statusBox.BackColor = System.Drawing.Color.Red;
Expand Down

0 comments on commit a41482a

Please sign in to comment.