Merge branch 'master' of github.com:r0ket/r0ket
This commit is contained in:
commit
0dc02b6b02
|
@ -25,7 +25,7 @@ static const struct MENU submenu_privacy={ "Privacy?", {
|
||||||
|
|
||||||
void ram(void){
|
void ram(void){
|
||||||
bool again = true;
|
bool again = true;
|
||||||
menuflags|=MENU_JUSTONCE;
|
menuflags|=(MENU_JUSTONCE|MENU_BIG);
|
||||||
screen_intro();
|
screen_intro();
|
||||||
while (again) {
|
while (again) {
|
||||||
privacy_set = false;
|
privacy_set = false;
|
||||||
|
@ -36,7 +36,7 @@ void ram(void){
|
||||||
getInputWaitRelease();
|
getInputWaitRelease();
|
||||||
again = screen_overview();
|
again = screen_overview();
|
||||||
}
|
}
|
||||||
menuflags&= (~MENU_JUSTONCE);
|
menuflags&= (~(MENU_JUSTONCE|MENU_BIG));
|
||||||
writeFile("nick.cfg",GLOBAL(nickname),strlen(GLOBAL(nickname)));
|
writeFile("nick.cfg",GLOBAL(nickname),strlen(GLOBAL(nickname)));
|
||||||
saveConfig();
|
saveConfig();
|
||||||
};
|
};
|
||||||
|
|
|
@ -82,3 +82,5 @@ delayms_queue_plus
|
||||||
getInputWaitTimeout
|
getInputWaitTimeout
|
||||||
readFile
|
readFile
|
||||||
writeFile
|
writeFile
|
||||||
|
input
|
||||||
|
saveConfig
|
||||||
|
|
Loading…
Reference in New Issue