8bit color shouldn't be higher than 216, by mistake.

This commit is contained in:
BeniS 2012-12-03 16:47:21 +13:00
parent 617e6b302b
commit dc6d2bb078
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public:
bool operator!=(const Color& other) const { return other.rgba() != rgba(); } bool operator!=(const Color& other) const { return other.rgba() != rgba(); }
static Color from8bit(int color) { static Color from8bit(int color) {
if(color >= 256 || color <= 0) if(color >= 216 || color <= 0)
return Color(0, 0, 0); return Color(0, 0, 0);
int r = int(color / 36) % 6 * 51; int r = int(color / 36) % 6 * 51;