Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
fixed message box parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
MgAl2O4 committed Feb 11, 2021
1 parent 214eb73 commit c686fbf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions SINoCOLO/GameLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,7 @@ private bool OnScan_ColoCombat(ScannerColoCombat.ScreenData screenData)

cachedDataColoCombat = screenData;

#if DEBUG && 0
bool canSave = true;
/*bool canSave = true;
if (lastScreenshotTime != null)
{
TimeSpan timeSinceScreenshot = DateTime.Now - lastScreenshotTime;
Expand All @@ -302,8 +301,7 @@ private bool OnScan_ColoCombat(ScannerColoCombat.ScreenData screenData)
{
lastScreenshotTime = DateTime.Now;
OnSaveScreenshot();
}
#endif // DEBUG
}*/

scanSkipCounter--;
if (scanSkipCounter > 0)
Expand Down
4 changes: 2 additions & 2 deletions SINoCOLO/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("20.0.0.0")]
[assembly: AssemblyFileVersion("20.0.0.0")]
[assembly: AssemblyVersion("21.0.0.0")]
[assembly: AssemblyFileVersion("21.0.0.0")]
2 changes: 1 addition & 1 deletion SINoVision/ScannerMessageBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public override string ToString()
}

private FastPixelMatch matchAvgRed = new FastPixelMatchHSV(10, 20, 50, 70, 20, 50);
private FastPixelMatch matchAvgWhite = new FastPixelMatchHSV(25, 40, 5, 40, 20, 90);
private FastPixelMatch matchAvgWhite = new FastPixelMatchHSV(20, 40, 0, 40, 20, 90);
private FastPixelMatch matchAvgSpec = new FastPixelMatchHSV(20, 40, 20, 40, 40, 80);

private Rectangle rectOkButton = new Rectangle(118, 547, 95, 27);
Expand Down

0 comments on commit c686fbf

Please sign in to comment.