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 760e1e6 commit 3a4249b
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 3a4249b

Please sign in to comment.