Skip to content

Commit

Permalink
xrCore: Fix conformance in For loop scope (#104).
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 15, 2016
1 parent 5dd6518 commit e61d3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/_math.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void Detect()
// Detect QPC Overhead
QueryPerformanceFrequency((PLARGE_INTEGER)&qpc_freq);
qpc_overhead = 0;
for (i = 0; i < 256; i++)
for (int i = 0; i < 256; i++)
{
start = QPC();
qpc_overhead += QPC() - start - dummy;
Expand Down

0 comments on commit e61d3e9

Please sign in to comment.