Browse Source

* TODO: New stuff to do.

* src/io.c: left and right arrow keys were swapped.
tags/v0.99.beta14
Sam Hocevar sam 21 years ago
parent
commit
72b545abce
2 changed files with 15 additions and 7 deletions
  1. +13
    -5
      TODO
  2. +2
    -2
      src/io.c

+ 13
- 5
TODO View File

@@ -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


+ 2
- 2
src/io.c View File

@@ -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();


Loading…
Cancel
Save