From 3badd9b739a0cc8dc6e70194863692557a494224 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Sun, 23 Dec 2007 15:41:24 +0100 Subject: Fix constant pointers declaration. --- src/dxr3/video_out_dxr3.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index a2153dacc..81deea482 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.c @@ -209,12 +209,12 @@ static vo_driver_t *dxr3_vo_open_plugin(video_driver_class_t *class_gen, const v plugin_node_t *node; #ifdef HAVE_X11 - static const char const *videoout_modes[] = { "letterboxed tv", "widescreen tv", + static const char *const videoout_modes[] = { "letterboxed tv", "widescreen tv", "letterboxed overlay", "widescreen overlay", NULL }; #else - static const char const *videoout_modes[] = { "letterboxed tv", "widescreen tv", NULL }; + static const char *const videoout_modes[] = { "letterboxed tv", "widescreen tv", NULL }; #endif - static const char const *tv_modes[] = { "ntsc", "pal", "pal60" , "default", NULL }; + static const char *const tv_modes[] = { "ntsc", "pal", "pal60" , "default", NULL }; int list_id, list_size; xine_sarray_t *plugin_list; -- cgit v1.2.3