We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7433684 commit 36f50a4Copy full SHA for 36f50a4
1 file changed
Core/GameEngine/Source/Common/Diagnostic/SimulationMathCrc.cpp
@@ -120,7 +120,8 @@ void SimulationMathCrc::runBenchmark(int iterations)
120
xfer.open("SimMathDet");
121
appendSimulationMathCrc_Deterministic(xfer);
122
xfer.close();
123
- if (i == 0) crcDet = xfer.getCRC();
+ if (i == 0)
124
+ crcDet = xfer.getCRC();
125
}
126
#ifndef __APPLE__
127
_fpreset();
@@ -139,7 +140,8 @@ void SimulationMathCrc::runBenchmark(int iterations)
139
140
xfer.open("SimMathNat");
141
appendSimulationMathCrc_Native(xfer);
142
- if (i == 0) crcNat = xfer.getCRC();
143
144
+ crcNat = xfer.getCRC();
145
146
147
0 commit comments