From dda4443ae9ac33ce2a2721fe07d02a6a9592e987 Mon Sep 17 00:00:00 2001 From: harry Date: Mon, 26 Jun 2023 22:40:49 -0400 Subject: [PATCH] Minor tscValid function correction. --- src/utils/timeStamp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/timeStamp.h b/src/utils/timeStamp.h index 4af6b774..c4ba96fd 100644 --- a/src/utils/timeStamp.h +++ b/src/utils/timeStamp.h @@ -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);