From 00ef27af1dd09db1c42ef7b5202d3d1f84e376c0 Mon Sep 17 00:00:00 2001 From: duckymomo360 Date: Wed, 30 Mar 2022 11:50:55 -0700 Subject: [PATCH] change drc setting bind to minus --- source/MenuUtils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/MenuUtils.cpp b/source/MenuUtils.cpp index 8b92574..d2b8a81 100644 --- a/source/MenuUtils.cpp +++ b/source/MenuUtils.cpp @@ -136,7 +136,7 @@ int32_t handleMenuScreen(std::string &configPath, std::string &drcSettingPath, i } else if (vpad.trigger & VPAD_BUTTON_Y) { autoboot = selected; redraw = true; - } else if (vpad.trigger & VPAD_BUTTON_B) { + } else if (vpad.trigger & VPAD_BUTTON_MINUS) { drcEnabled = !drcEnabled; redraw = true; } @@ -176,7 +176,7 @@ int32_t handleMenuScreen(std::string &configPath, std::string &drcSettingPath, i DrawUtils::setFontSize(18); DrawUtils::print(16, SCREEN_HEIGHT - 8, "\ue07d Navigate "); DrawUtils::print(SCREEN_WIDTH - 16, SCREEN_HEIGHT - 8, "\ue000 Choose", true); - const char *autobootHints = "\ue002 Clear Autoboot / \ue003 Select Autoboot / \ue001 Toggle vWii DRC"; + const char *autobootHints = "\ue002 Clear Autoboot / \ue003 Select Autoboot / - Toggle vWii DRC"; DrawUtils::print(SCREEN_WIDTH / 2 + DrawUtils::getTextWidth(autobootHints) / 2, SCREEN_HEIGHT - 8, autobootHints, true); DrawUtils::endDraw();