Skip to content

Commit 20c2e9b

Browse files
author
nitrocaster
committed
Fix performance alert rendering.
1 parent 254945c commit 20c2e9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrEngine/PerformanceAlert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ void PerformanceAlert::Print(IGameFont &font, const char *format, ...)
99
float refHeight = font.GetHeight();
1010
font.SetColor(alertColor);
1111
font.OutSet(alertPos.x, alertPos.y);
12-
font.SetHeightI(fontBaseSize*2);
12+
font.SetHeight(fontBaseSize*2);
1313
va_list args;
1414
va_start(args, format);
1515
font.OutNextVA(format, args);

0 commit comments

Comments
 (0)