Changed digital speedometer color from blue to red (more visible)

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

Former-commit-id: b252211dafaaa3586e8c45c107b30cf0e42d9742
Former-commit-id: 6d0be368021117c6585dc4c6339f08bb6ba67460
This commit is contained in:
pouillot 2008-11-30 09:08:48 +00:00
parent f36f323cd0
commit b2340574b0

View file

@ -754,7 +754,7 @@ cGrBoard::grDispCounterBoard2(tCarElt *car)
if (curInst->digital) {
// Do not add "%3d" or something, because the digital font DOES NOT SUPPORT BLANKS!!!!
sprintf(buf, "%d", abs((int)(car->_speed_x * 3.6)));
GfuiPrintString(buf, grBlue, GFUI_FONT_DIGIT,
GfuiPrintString(buf, grRed, GFUI_FONT_DIGIT,
(int)curInst->digitXCenter, (int)(curInst->digitYCenter), GFUI_ALIGN_HC_VB);
}