diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-11-09 15:11:54 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-11-09 15:11:54 +0000 |
commit | 509475ec2c85c0456584b0596176280c51f11cd6 (patch) | |
tree | b7166f7066cfc9580c7dbf404e730ccd80c16724 /libvo | |
parent | 7f8d660be5da7f676f7c6f7bb1b4dff6ca9a0e62 (diff) |
Change type of teletext color specification from unsigned char
to static const uint8_t
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29863 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/sub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/sub.c b/libvo/sub.c index 2a872bdc1f..e945cd1a4d 100644 --- a/libvo/sub.c +++ b/libvo/sub.c @@ -312,7 +312,7 @@ inline static void vo_update_text_teletext(mp_osd_obj_t *obj, int dxs, int dys) int b,ax[6],ay[6],aw[6],ah[6]; tt_char tc; tt_char* tdp=vo_osd_teletext_page; - unsigned char colors[8]={1,85,150,226,70,105,179,254}; + static const uint8_t colors[8]={1,85,150,226,70,105,179,254}; unsigned char* buf[9]; obj->flags|=OSDFLAG_CHANGED|OSDFLAG_VISIBLE; |