Skip to content

Commit

Permalink
added BOTTOM for text and reverted sctrlSESetConfigEx to sctrlSESetCo…
Browse files Browse the repository at this point in the history
…nfig, but still not working
  • Loading branch information
krazynez committed Jul 14, 2023
1 parent e66c97c commit 23d87c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion extras/menus/xMenu/src/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#include <systemctrl_se.h>
#include <sstream>

#define BOTTOM 260

static ARKConfig _ark_conf;
ARKConfig* ark_config = &_ark_conf;
static SEConfig _se_conf;
Expand Down Expand Up @@ -147,6 +149,8 @@ void Menu::updateScreen(){

common::printText(2, 2, ver.str().c_str());

common::printText(2, BOTTOM, "LT - Toggle Speedup");

common::flip();
}

Expand Down Expand Up @@ -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);
}

}
Expand Down

0 comments on commit 23d87c9

Please sign in to comment.