added brightness and FOV sliders to grahpic settings as well as changed weird text in PauseScreen

(also adds sliding logic to sliders so you can drag them with your mouse)
This commit is contained in:
jerryjhird
2026-03-15 08:16:47 +00:00
parent 1837452f24
commit 0c5a300b1c
2 changed files with 32 additions and 24 deletions

View File

@@ -30,8 +30,8 @@ void PauseScreen::init()
}
buttons.push_back(new Button(4, width / 2 - 100, height / 4 + 24 * 1 + yo, L"LBack to game"));
buttons.push_back(new Button(0, width / 2 - 100, height / 4 + 24 * 4 + yo, L"LOptions..."));
buttons.push_back(new Button(4, width / 2 - 100, height / 4 + 24 * 1 + yo, I18n::get(L"menu.returnToGame")));
buttons.push_back(new Button(0, width / 2 - 100, height / 4 + 24 * 4 + yo, I18n::get(L"menu.options")));
buttons.push_back(new Button(5, width / 2 - 100, height / 4 + 24 * 2 + yo, 98, 20, I18n::get(L"gui.achievements")));
buttons.push_back(new Button(6, width / 2 + 2, height / 4 + 24 * 2 + yo, 98, 20, I18n::get(L"gui.stats")));