From 675df6487ab7fdf8ca36b36a8552901337032e03 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 23 Sep 2009 23:21:46 -0400 Subject: [PATCH] Feature - 256-color support - Added the colorN variants to the rgbRGB and grayN labels. --- src/command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command.cpp b/src/command.cpp index 43cb22d20..7c02d2822 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -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;