Skip to content

Commit

Permalink
Fix UI library forcing latched variables
Browse files Browse the repository at this point in the history
This caused issues when setting render variables
  • Loading branch information
smallmodel committed Sep 1, 2024
1 parent 89d805a commit fb87550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/client/cl_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3679,7 +3679,7 @@ void CL_FillUIImports(void)
uii.Cvar_GetString = CvarGetForUI;
uii.Cvar_Reset = Cvar_Reset;
uii.Cvar_Find = Cvar_FindVar;
uii.Cvar_Set = Cvar_Set;
uii.Cvar_Set = UI_Cvar_Set;
uii.File_PickFile = PickFile;
uii.File_FreeFile = FS_FreeFile;
uii.File_ListFiles = ListFilesForUI;
Expand Down

0 comments on commit fb87550

Please sign in to comment.