Application: change how advanced mode is presented.
This commit is contained in:
parent
c8daeb0656
commit
3fb294ca4a
1 changed files with 3 additions and 2 deletions
|
@ -127,12 +127,13 @@ Application::drawMainMenu() {
|
|||
drawHelpMarker("This gives access to save edition features that can be considered cheats.",
|
||||
float(windowSize().x()) * 0.4f);
|
||||
|
||||
if(drawCheckbox("Advanced mode", conf().advancedMode())) {
|
||||
if(drawCheckbox("Advanced fuckery mode", conf().advancedMode())) {
|
||||
conf().setAdvancedMode(!conf().advancedMode());
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::AlignTextToFramePadding();
|
||||
drawHelpMarker("This gives access to editing values that have unknown purposes or are undocumented.",
|
||||
drawHelpMarker("This gives access to editing values that have unknown purposes or are undocumented. "
|
||||
"It also grants access to some special editing features allowing things the game is NOT designed for.",
|
||||
float(windowSize().x()) * 0.4f);
|
||||
|
||||
if(drawCheckbox("Check for updates on startup", conf().checkUpdatesOnStartup())) {
|
||||
|
|
Loading…
Reference in a new issue