Small fix: need set the color before call glRasterPos or don't work.

This commit is contained in:
Diego Borghetti
2007-07-16 19:04:42 +00:00
parent 9fc66d5ce5
commit 7fc4306cf2

View File

@@ -1019,8 +1019,8 @@ static void drawviewborder(void)
/* camera name - draw in highlighted text colour */
if (ca && (ca->flag & CAM_SHOWNAME)) {
glRasterPos2f(x1, y1-15);
BIF_ThemeColor(TH_TEXT_HI);
glRasterPos2f(x1, y1-15);
BMF_DrawString(G.font, G.vd->camera->id.name+2);
BIF_ThemeColor(TH_WIRE);