Set the compass scale to 0.55 by default on the base game

This commit is contained in:
smallmodel 2024-12-09 18:08:00 +01:00
parent b58f031bcc
commit 835ddb1de3
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -3857,7 +3857,7 @@ void UI_ResolutionChange(void)
ui_compass_scale = Cvar_Get("ui_compass_scale", "0.75", CVAR_ARCHIVE | CVAR_LATCH);
} else {
// Older version doesn't have an adjustable compass, so assume 0.5 by default
ui_compass_scale = Cvar_Get("ui_compass_scale", "0.5", CVAR_ARCHIVE | CVAR_LATCH);
ui_compass_scale = Cvar_Get("ui_compass_scale", "0.55", CVAR_ARCHIVE | CVAR_LATCH);
}
CL_FillUIImports();