OSGHUD: update tires widget with temperatures converted from KELVIN to CELSIUS
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7815 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 3fd08e54ed0b6ffea9a59920fc504cfacd7a02bb Former-commit-id: a885c9fb652da7dc650344c2b3695d84587079a6
This commit is contained in:
parent
51fa75318c
commit
111721b6a1
1 changed files with 4 additions and 1 deletions
|
@ -1301,7 +1301,10 @@ void SDHUD::Refresh(tSituation *s, const SDFrameInfo* frameInfo,
|
|||
}
|
||||
//temps string only do this for middle temps?
|
||||
temp.str("");
|
||||
temp << currCar->_tyreT_mid(i);
|
||||
//internally the tire temp is in KELVIN
|
||||
int tireTempInCelsius = currCar->_tyreT_mid(i)- 273.15;
|
||||
// temp << tireTempInCelsius << " °C";
|
||||
temp << tireTempInCelsius << " C";
|
||||
|
||||
std::ostringstream tireNameText;
|
||||
tireNameText << "tire-" << tireName.str().c_str() << "temps";
|
||||
|
|
Loading…
Reference in a new issue