New-line chars in GfLog* arg strings : use only at the end of the string, and no more than once

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4302 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 47276c8d6075a47b7dc4ed5ac9297ddb0398ab31
Former-commit-id: aa6fb946128fa78637adb6cabdab3a15b24a9ba3
This commit is contained in:
pouillot 2011-12-27 13:41:03 +00:00
parent 17e9e3774c
commit 5dcfaf1faf

View file

@ -2367,7 +2367,7 @@ void TDriver::InitAdaptiveShiftLevels()
} }
GfOut("\n#Gear change summary:\n"); GfOut("#Gear change summary:\n");
for (J = 1; J < oLastGear; J++) for (J = 1; J < oLastGear; J++)
GfOut("#%d: Rpm: %g(%g) -> Rpm: %g(%g)\n", GfOut("#%d: Rpm: %g(%g) -> Rpm: %g(%g)\n",
J,oShift[J]*RpmFactor,oShift[J],ToRpm[J]*RpmFactor,ToRpm[J]); J,oShift[J]*RpmFactor,oShift[J],ToRpm[J]*RpmFactor,ToRpm[J]);