aboutsummaryrefslogtreecommitdiffstats
path: root/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'LibOVR/Src/Util/Util_LatencyTest2Reader.cpp')
-rw-r--r--LibOVR/Src/Util/Util_LatencyTest2Reader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp b/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp
index e34bf19..6131c30 100644
--- a/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp
+++ b/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp
@@ -63,7 +63,7 @@ FrameTimeRecordSet::FrameTimeRecordSet()
void FrameTimeRecordSet::AddValue(int readValue, double timeSeconds)
{
Records[NextWriteIndex].ReadbackIndex = readValue;
- Records[NextWriteIndex].TimeSeconds = timeSeconds;
+ Records[NextWriteIndex].TimeSeconds = timeSeconds;
NextWriteIndex++;
if (NextWriteIndex == RecordCount)
NextWriteIndex = 0;
@@ -110,7 +110,7 @@ void RecordStateReader::GetRecordSet(FrameTimeRecordSet& recordset)
return;
}
- recordset = Updater->SharedLatencyTestState.GetState();
+ recordset = Updater->LatencyTest.GetState();
return;
}