summaryrefslogtreecommitdiff
path: root/src/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/display.c')
-rw-r--r--src/display.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/display.c b/src/display.c
index cd1f0f4..111e5d4 100644
--- a/src/display.c
+++ b/src/display.c
@@ -43,7 +43,7 @@ int key_attrs[] = {
0,
INTENSITY, /* F1 */
PANTILT, /* F2 */
- COL_CMY, /* F3 */
+ COLOUR, /* F3 */
GOBO, /* F4 */
PRISM, /* F5 */
FOCUS, /* F6 */
@@ -52,7 +52,7 @@ int key_attrs[] = {
FROST, /* F9 */
GOBO_ROTATE, /* F10 */
PRISM_ROTATE, /* F11 */
- IRIS, /* F12 */
+ GOBO_SPIN, /* F12 */
};
@@ -135,14 +135,17 @@ static const char *attr_text(int cls)
switch ( cls ) {
case INTENSITY : return "Intensity";
case PANTILT : return "Pan/tilt";
- case COL_CMY : return "CMY colour";
- case COL_RGB : return "RGB colour";
+ case COLOUR : return "Colour";
case GOBO : return "Gobo";
case PRISM : return "Prism";
case FOCUS : return "Focus";
case ZOOM : return "Zoom";
case IRIS : return "Iris";
case FROST : return "Frost";
+ case GOBO_ROTATE : return "Gobo rotate";
+ case PRISM_ROTATE : return "Prism rotate";
+ case GOBO_SPIN : return "Gobo spin";
+ case PRISM_SPIN : return "Prism spin";
}
return "(unknown)";
}