Commit 41f79cdb authored by Sam Hocevar's avatar Sam Hocevar

* modules/video_output/caca.c: fixed typedefs for older libcaca versions.

parent 61c29c8f
...@@ -32,9 +32,9 @@ ...@@ -32,9 +32,9 @@
#ifndef CACA_API_VERSION_1 #ifndef CACA_API_VERSION_1
/* Upward compatibility macros */ /* Upward compatibility macros */
typedef cucul_canvas_t char typedef char cucul_canvas_t;
typedef cucul_dither_t struct caca_bitmap typedef struct caca_bitmap cucul_dither_t;
typedef caca_display_t char typedef char caca_display_t;
# define CUCUL_COLOR_DEFAULT CACA_COLOR_LIGHTGRAY # define CUCUL_COLOR_DEFAULT CACA_COLOR_LIGHTGRAY
# define CUCUL_COLOR_BLACK CACA_COLOR_BLACK # define CUCUL_COLOR_BLACK CACA_COLOR_BLACK
# define cucul_clear_canvas(x) caca_clear() # define cucul_clear_canvas(x) caca_clear()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment