summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-28 00:00:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-28 00:00:41 +0000
commitbbce66c735745c77f5e98482e3c0ad9c56da4a28 (patch)
tree034253770ac290954f2c1d87d04a2cad99b4bbdc
parentc6e0734b7b99b97253b01a5c45ba1dbb7da874f4 (diff)
downloadrockbox-bbce66c735745c77f5e98482e3c0ad9c56da4a28.tar.gz
rockbox-bbce66c735745c77f5e98482e3c0ad9c56da4a28.zip
removed log, put a sleep() back since it runs just too fast otherwise
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@285 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/app.c b/uisimulator/app.c
index 8f51f98f80..d3e1b8e8ad 100644
--- a/uisimulator/app.c
+++ b/uisimulator/app.c
@@ -69,6 +69,6 @@ void app_main(void)
break;
}
lcd_update();
- Logf("key %x cursor at %d\n", key, cursor);
+ sleep(1);
}
}