Minor tscValid function correction.

This commit is contained in:
harry 2023-06-26 22:40:49 -04:00
parent 99bb679ac5
commit dda4443ae9
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ namespace FCEU
{
return _tscFreq;
}
static bool tscValid(void){ return tscFreq != 0; };
static bool tscValid(void){ return _tscFreq != 0; };
// Call this function to calibrate the estimated TSC frequency
static void tscCalibrate(int numSamples = 0);