From 85d499d2cc5479634cfae4c13a8e4efa5c9b7c0e Mon Sep 17 00:00:00 2001 From: Andrej Podhajsky Date: Wed, 2 Feb 2011 15:45:48 +0100 Subject: [PATCH] menu and screen texts --- asdevice/device.c | 3 +++ pointertest.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/asdevice/device.c b/asdevice/device.c index a747f6d..84369a8 100755 --- a/asdevice/device.c +++ b/asdevice/device.c @@ -27,6 +27,9 @@ char s011[] PROGMEM = "!CANCELLED!\0"; char s012[] PROGMEM = "Device\0"; char s013[] PROGMEM = "DEFUSED!\0"; char s014[] PROGMEM = "ACTIVATED!\0"; +char s015[] PROGMEM = "!! GAME OVER !!\0"; +char s016[] PROGMEM = "!! BLUE WINS !!\0"; +char s017[] PROGMEM = "!! RED WINS !!\0"; //set screens diff --git a/pointertest.c b/pointertest.c index c32c418..d8e51f5 100644 --- a/pointertest.c +++ b/pointertest.c @@ -49,7 +49,7 @@ void drawScreen(char** s,unsigned yo,int scrLen){ system("clear"); for(i; i<(unsigned)min(scrLen, 2); i++){ printf("%d ",i); - printf(i==1?"*":" "); + printf(i==1?">":" "); printf("%s\n",s[i+yo]); } } -- 2.11.4.GIT