Skip to content

Commit e61d3e9

Browse files
author
nitrocaster
committed
xrCore: Fix conformance in For loop scope (#104).
1 parent 5dd6518 commit e61d3e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrCore/_math.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ void Detect()
199199
// Detect QPC Overhead
200200
QueryPerformanceFrequency((PLARGE_INTEGER)&qpc_freq);
201201
qpc_overhead = 0;
202-
for (i = 0; i < 256; i++)
202+
for (int i = 0; i < 256; i++)
203203
{
204204
start = QPC();
205205
qpc_overhead += QPC() - start - dummy;

0 commit comments

Comments
 (0)