Minor tscValid function correction.
This commit is contained in:
parent
99bb679ac5
commit
dda4443ae9
|
@ -360,7 +360,7 @@ namespace FCEU
|
||||||
{
|
{
|
||||||
return _tscFreq;
|
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
|
// Call this function to calibrate the estimated TSC frequency
|
||||||
static void tscCalibrate(int numSamples = 0);
|
static void tscCalibrate(int numSamples = 0);
|
||||||
|
|
Loading…
Reference in New Issue