Skip to content

Commit

Permalink
Fix GetFont default parameter
Browse files Browse the repository at this point in the history
Font proportionality should be explicitly stated
  • Loading branch information
samisalreadytaken committed Nov 4, 2022
1 parent a4c78a0 commit ca47f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sp/src/game/client/mapbase/vscript_vgui.nut
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ local _FontTall = {}
local DoGetFont = ISurface.DoGetFont <- ISurface.GetFont;
local DoGetFontTall = ISurface.GetFontTall;
ISurface.GetFont <- function( name, proportional = false, sch = "" )
ISurface.GetFont <- function( name, proportional, sch = "" )
{
if ( sch in _Schemes )
{
Expand Down

0 comments on commit ca47f40

Please sign in to comment.