mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Change x1.5 to x1.25, it was too big
This commit is contained in:
parent
839d040cf9
commit
9dde4455b2
2 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ f32 djui_gfx_get_scale(void) {
|
||||||
return 1.0f;
|
return 1.0f;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
return 1.5f;
|
return 1.25f;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return 1.0f;
|
return 1.0f;
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ void djui_panel_main_menu_create(struct DjuiBase* caller) {
|
||||||
"WDW"
|
"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);
|
struct DjuiSelectionbox* selectionbox1 = djui_selectionbox_create(body, DLANG(MENU_OPTIONS, LEVEL), levelChoices, 18, &configMenuLevel, NULL);
|
||||||
djui_base_set_enabled(&selectionbox1->base, !configMenuRandom);
|
djui_base_set_enabled(&selectionbox1->base, !configMenuRandom);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue