Merge branch 'master' of github.com:r0ket/r0ket

This commit is contained in:
Stefan `Sec` Zehl 2011-08-04 21:50:00 +02:00
commit 0dc02b6b02
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){
bool again = true;
menuflags|=MENU_JUSTONCE;
menuflags|=(MENU_JUSTONCE|MENU_BIG);
screen_intro();
while (again) {
privacy_set = false;
@ -36,7 +36,7 @@ void ram(void){
getInputWaitRelease();
again = screen_overview();
}
menuflags&= (~MENU_JUSTONCE);
menuflags&= (~(MENU_JUSTONCE|MENU_BIG));
writeFile("nick.cfg",GLOBAL(nickname),strlen(GLOBAL(nickname)));
saveConfig();
};

View File

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