mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-10-31 15:20:13 +00:00
Don't increase size if frame_timing is false
This commit is contained in:
parent
1b00d29792
commit
a93eb906e9
@ -209,7 +209,9 @@ parse_overlay_env(struct overlay_params *params,
|
||||
if (params->height != 140)
|
||||
heightChanged = true;
|
||||
|
||||
int FrameTimeGraphHeight = 50;
|
||||
int FrameTimeGraphHeight = 0;
|
||||
if (params->enabled[OVERLAY_PARAM_ENABLED_frame_timing])
|
||||
FrameTimeGraphHeight = 50;
|
||||
|
||||
if (!params->font_size)
|
||||
params->font_size = 24.0f;
|
||||
|
Loading…
Reference in New Issue
Block a user