mirror of https://github.com/mpv-player/mpv
Correctly place second const in declaration.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27724 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
980239fa82
commit
f49e1f1e8f
|
@ -574,14 +574,14 @@ static char TY_XDS [ 8 ][ 25 ][ 34 ];
|
|||
static char TY_XDS_new[ 8 ][ 25 ][ 34 ];
|
||||
|
||||
// Array of [ MPAARating|TVRating ][ NumberRatings ]
|
||||
static const char const *TY_XDS_CHIP[ 2 ][ 8 ] =
|
||||
static const char * const TY_XDS_CHIP[ 2 ][ 8 ] =
|
||||
{
|
||||
{ "(NOT APPLICABLE)", "G", "PG", "PG-13", "R", "NC-17", "X", "(NOT RATED)" },
|
||||
{ "(NOT RATED)", "TV-Y", "TV-Y7", "TV-G", "TV-PG", "TV-14", "TV-MA",
|
||||
"(NOT RATED)" }
|
||||
};
|
||||
|
||||
static const char const *TY_XDS_modes[] =
|
||||
static const char * const TY_XDS_modes[] =
|
||||
{
|
||||
"CURRENT", // 01h-02h current program
|
||||
"FUTURE ", // 03h-04h future program
|
||||
|
|
Loading…
Reference in New Issue