Skip to content

Commit

Permalink
Fix performance alert rendering.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 30, 2016
1 parent 254945c commit 20c2e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrEngine/PerformanceAlert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ void PerformanceAlert::Print(IGameFont &font, const char *format, ...)
float refHeight = font.GetHeight();
font.SetColor(alertColor);
font.OutSet(alertPos.x, alertPos.y);
font.SetHeightI(fontBaseSize*2);
font.SetHeight(fontBaseSize*2);
va_list args;
va_start(args, format);
font.OutNextVA(format, args);
Expand Down

0 comments on commit 20c2e9b

Please sign in to comment.