1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

Format fix: remove extra spaces from ranged TimesINT formatting.

This commit is contained in:
Jordan Ayers 2013-10-07 20:02:20 -05:00
parent 6303e56ce4
commit 065f435225

View file

@ -436,7 +436,7 @@ namespace MWGui
formatter << std::fixed << std::setprecision(1) << " " << (mEffectParams.mMagnMin / 10.0f);
if (mEffectParams.mMagnMin != mEffectParams.mMagnMax)
formatter << times << " " << to << " " << (mEffectParams.mMagnMax / 10.0f);
formatter << times << to << (mEffectParams.mMagnMax / 10.0f);
formatter << timesInt;
spellLine += formatter.str();