App: [skip ci] fix zero-based color model Red-White-Blue

This commit is contained in:
wmayer
2022-04-03 00:58:51 +02:00
parent b3ef69ef69
commit ca01005c86

View File

@@ -178,7 +178,7 @@ public:
ColorModelWhiteRed () : ColorModel(3) {
colors[0] = Color(1, 1, 1);
colors[1] = Color(1, float(85.0 / 255), 0);
colors[2] = Color(0, 0, 1);
colors[2] = Color(1, 0, 0);
}
};