Commit 72106895 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

zvbi: fix RGYB key values.

parent a1126564
......@@ -125,11 +125,11 @@ static const char *const ppsz_default_triplet[] = {
};
typedef enum {
ZVBI_KEY_RED = 'r' << 0x16,
ZVBI_KEY_GREEN = 'g' << 0x16,
ZVBI_KEY_YELLOW = 'y' << 0x16,
ZVBI_KEY_BLUE = 'b' << 0x16,
ZVBI_KEY_INDEX = 'i' << 0x16,
ZVBI_KEY_RED = 'r' << 16,
ZVBI_KEY_GREEN = 'g' << 16,
ZVBI_KEY_YELLOW = 'y' << 16,
ZVBI_KEY_BLUE = 'b' << 16,
ZVBI_KEY_INDEX = 'i' << 16,
} ttxt_key_id;
typedef enum {
......
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