X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bigscreen%2Ftheme.cpp;h=e873c9d9dfdcb3e16dee7e52bda4298e5384f89b;hb=135d4b63ff2e6985bc12a792221781a15e5e1058;hp=008c37fbffa4303dfdd9d43837c568ad7c125a9a;hpb=bbbf0f34d43aa3b6f43225fb6c2d45566a423ab1;p=ccbs diff --git a/bigscreen/theme.cpp b/bigscreen/theme.cpp index 008c37f..e873c9d 100644 --- a/bigscreen/theme.cpp +++ b/bigscreen/theme.cpp @@ -68,9 +68,9 @@ void fill_background(unsigned char *buf, unsigned width, unsigned height) unsigned char *ptr = buf; for (unsigned i = 0; i < width * height; ++i) { - *ptr++ = bg_r; - *ptr++ = bg_g; *ptr++ = bg_b; + *ptr++ = bg_g; + *ptr++ = bg_r; *ptr++ = 0; } }