Ignore:
Timestamp:
Dec 23, 2002, 11:06:27 AM (20 years ago)
Author:
Sam Hocevar
Message:
  • added support for --disable-slang.
  • fixed an overflow in the tunnel update code.
  • fragbomb is now 'f', not 'd'.
  • added a missing call to init_bonus().
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/src/common.h

    r49 r51  
    44 *                 All Rights Reserved
    55 *
    6  *   $Id: common.h,v 1.10 2002/12/23 09:28:37 sam Exp $
     6 *   $Id: common.h,v 1.11 2002/12/23 10:06:27 sam Exp $
    77 *
    88 *   This program is free software; you can redistribute it and/or modify
     
    3333#   define gfx_putchar(x) SLsmg_write_char(x)
    3434#   define gfx_putstr(x) SLsmg_write_string(x)
    35 #else
     35#elif USE_NCURSES
    3636#   include <curses.h>
    3737#   define gfx_color(x) attrset(COLOR_PAIR(x))
     
    3939#   define gfx_putchar(x) addch(x)
    4040#   define gfx_putstr(x) addstr(x)
     41#else
     42#   define gfx_color(x) do{}while(0)
     43#   define gfx_goto(x,y) do{}while(0)
     44#   define gfx_putchar(x) do{}while(0)
     45#   define gfx_putstr(x) do{}while(0)
    4146#endif
    4247
Note: See TracChangeset for help on using the changeset viewer.