make matrix a nickname replacement. Also make it work queue

This commit is contained in:
Stefan `Sec` Zehl 2011-08-12 02:59:33 +02:00
parent 22dcb53673
commit 03f2f8a7d3
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ void ram(void){
lcdDisplay(); lcdDisplay();
// Exit on enter+left // Exit on enter+left
int key = getInputRaw(); int key = getInputRaw();
if(key== BTN_ENTER || key == BTN_LEFT) if(key!= BTN_NONE)
return; return;
delayms(60); delayms_queue_plus(90,0);
}; };
}; };