From 23d87c97f418780e9c59e3912a1406e8d7e6d8e1 Mon Sep 17 00:00:00 2001 From: Brennen Murphy Date: Fri, 14 Jul 2023 14:14:23 -0400 Subject: [PATCH] added BOTTOM for text and reverted sctrlSESetConfigEx to sctrlSESetConfig, but still not working --- extras/menus/xMenu/src/menu.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/extras/menus/xMenu/src/menu.cpp b/extras/menus/xMenu/src/menu.cpp index dcabdee76..0cdd19fdf 100644 --- a/extras/menus/xMenu/src/menu.cpp +++ b/extras/menus/xMenu/src/menu.cpp @@ -3,6 +3,8 @@ #include #include +#define BOTTOM 260 + static ARKConfig _ark_conf; ARKConfig* ark_config = &_ark_conf; static SEConfig _se_conf; @@ -147,6 +149,8 @@ void Menu::updateScreen(){ common::printText(2, 2, ver.str().c_str()); + common::printText(2, BOTTOM, "LT - Toggle Speedup"); + common::flip(); } @@ -208,7 +212,7 @@ void Menu::control(){ } else if (control.LT()){ se_config->msspeed = !se_config->msspeed; - sctrlSESetConfigEx(se_config, sizeof(SEConfig)); + sctrlSESetConfig(se_config); } }