1boot bigmenu

This commit is contained in:
iggy 2011-08-04 21:46:28 +02:00
parent 639fe12fb6
commit 8537ef4b3d
2 changed files with 4 additions and 2 deletions

View File

@ -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();
}; };

View File

@ -82,3 +82,5 @@ delayms_queue_plus
getInputWaitTimeout getInputWaitTimeout
readFile readFile
writeFile writeFile
input
saveConfig