Can't you just be happy GCC? It's all I've ever wanted.

This commit is contained in:
Shyotl
2015-05-18 14:02:39 -05:00
parent 690f3614c1
commit 55e3ddb465
2 changed files with 5 additions and 15 deletions

View File

@@ -113,8 +113,8 @@ void LLStat::addValue(const F32 value)
}
// Increment the bin counters.
mCurBin = ++mCurBin % mNumBins;
mNextBin = ++mNextBin % mNumBins;
mCurBin = (mCurBin+1) % mNumBins;
mNextBin = (mNextBin+1) % mNumBins;
mBins[mCurBin].mValue = value;
if (mUseFrameTimer)