Changeset 266 for libcaca/trunk/src/caca.c
- Timestamp:
- Dec 22, 2003, 11:58:24 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/src/caca.c
r265 r266 324 324 #endif 325 325 #if defined(USE_CONIO) 326 if(_caca_driver == USE_CONIO)326 if(_caca_driver == CACA_DRIVER_CONIO) 327 327 { 328 328 _wscroll = 1; … … 336 336 #endif 337 337 #if defined(USE_X11) 338 if(_caca_driver == USE_X11)338 if(_caca_driver == CACA_DRIVER_X11) 339 339 { 340 340 /* Nothing to do */ … … 460 460 { 461 461 #if defined(USE_NCURSES) 462 if(_caca_driver == USE_NCURSES)462 if(_caca_driver == CACA_DRIVER_NCURSES) 463 463 { 464 464 SCREEN *screen; … … 478 478 { 479 479 #if defined(USE_NCURSES) 480 if(_caca_driver == USE_NCURSES)480 if(_caca_driver == CACA_DRIVER_NCURSES) 481 481 { 482 482 SCREEN *screen;
Note: See TracChangeset
for help on using the changeset viewer.