Set SHR alpha channel to 255 for consistency with other video modes. (PR #1010)

This commit is contained in:
Andrea
2021-12-11 18:05:06 +00:00
committed by GitHub
parent 1670e0dbc0
commit a07ba4ade0
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -101,6 +101,7 @@ bgra_t ConvertIIgs2RGB(Color color)
rgb.r = color.red * 16;
rgb.g = color.green * 16;
rgb.b = color.blue * 16;
rgb.a = ALPHA;
return rgb;
}