Change x1.5 to x1.25, it was too big

This commit is contained in:
eros71-dev 2023-11-24 20:33:10 +01:00
parent 839d040cf9
commit 9dde4455b2
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ f32 djui_gfx_get_scale(void) {
return 1.0f;
case 2:
return 1.5f;
return 1.25f;
default:
return 1.0f;

View file

@ -60,7 +60,7 @@ void djui_panel_main_menu_create(struct DjuiBase* caller) {
"WDW"
};
char* djuiScaleChoices[3] = {"x0.85", "x1.0", "x1.5"};
char* djuiScaleChoices[3] = {"x0.85", "x1.0", "x1.25"};
struct DjuiSelectionbox* selectionbox1 = djui_selectionbox_create(body, DLANG(MENU_OPTIONS, LEVEL), levelChoices, 18, &configMenuLevel, NULL);
djui_base_set_enabled(&selectionbox1->base, !configMenuRandom);