Feature - 256-color support

- Added the colorN variants to the rgbRGB and grayN labels.
This commit is contained in:
Paul Beckingham 2009-09-23 23:21:46 -04:00
parent b2b4fc6b54
commit 675df6487a

View file

@ -1275,7 +1275,7 @@ int handleColor (std::string &outs)
out << std::endl;
// Color cube.
out << "Color cube rgb000 - rgb555:" << std::endl;
out << "Color cube rgb000 - rgb555 (also color16 - color231):" << std::endl;
for (int g = 0; g < 6; ++g)
{
out << " ";
@ -1298,7 +1298,7 @@ int handleColor (std::string &outs)
out << std::endl;
// Grey ramp.
out << "Gray ramp gray0 - gray23:" << std::endl << " ";
out << "Gray ramp gray0 - gray23 (also color232 - color255):" << std::endl << " ";
for (int g = 0; g < 24; ++g)
{
std::stringstream s;