We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a17cad commit d134115Copy full SHA for d134115
src/MenuState.cpp
@@ -36,7 +36,7 @@ MenuState :: MenuState(
36
m_pCanvas.get(),
37
m_pQor->resources(),
38
"Press Start",
39
- engine->window()->size().y / 25.0f,
+ engine->window()->size().y / 30.0f,
40
&m_Fade
41
))
42
{
@@ -333,9 +333,10 @@ void MenuState :: init_controls_menu()
333
334
for(auto&& bind: m_Binds)
335
m_ControlsMenu.options().emplace_back(
336
- bind.first + ": " + boost::algorithm::join(bind.second, ", "),
+ boost::to_upper_copy(bind.first) + ": " +
337
+ boost::algorithm::join(bind.second, ", "),
338
[this]{
-
339
+ m_pMenuGUI->hide();
340
}
341
);
342
0 commit comments