diff --git a/TODO b/TODO index 914ea08..e770772 100644 --- a/TODO +++ b/TODO @@ -1,13 +1,21 @@ $Id$ - o Sprite library - - o Clip graphics - - o Fix the thin ellipse rendering +Low level stuff o Write a Linux console output for the drawing library See also BUGS as to why it's very slow in console mode + o Better keyboard driver in an X terminal, see + http://groups.yahoo.com/group/zepp/message/381 + o DONE 12 Nov 2003: Port to conio.h + +High level stuff + + o Sprite library + + o Clip all graphics primitives + + o Fix the thin ellipse rendering + diff --git a/src/io.c b/src/io.c index bb1ae95..135a2aa 100644 --- a/src/io.c +++ b/src/io.c @@ -89,8 +89,8 @@ int caca_get_event(void) { case 'A': return CACA_EVENT_KEY_PRESS | CACA_KEY_UP; case 'B': return CACA_EVENT_KEY_PRESS | CACA_KEY_DOWN; - case 'C': return CACA_EVENT_KEY_PRESS | CACA_KEY_LEFT; - case 'D': return CACA_EVENT_KEY_PRESS | CACA_KEY_RIGHT; + case 'C': return CACA_EVENT_KEY_PRESS | CACA_KEY_RIGHT; + case 'D': return CACA_EVENT_KEY_PRESS | CACA_KEY_LEFT; } key[3] = _read_key();