From 1bf6385561d676e6c6e8b0ea046eb544c14d47f7 Mon Sep 17 00:00:00 2001 From: Eknous-P Date: Thu, 21 Mar 2024 23:43:23 +0400 Subject: [PATCH] text calc part 0 --- src/gui/guiConst.cpp | 11 +++++++++++ src/gui/guiConst.h | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/gui/guiConst.cpp b/src/gui/guiConst.cpp index aee901f4d..46f35fa34 100644 --- a/src/gui/guiConst.cpp +++ b/src/gui/guiConst.cpp @@ -233,6 +233,17 @@ const char* fxColorsNames[]={ "Miscellaneous" }; +const char* chanNames[]={ + "FM", + "Pulse", + "Noise", + "Wavetable", + "Sample", + "Square", + "Channel", // if neither + "Channels" +}; + const FurnaceGUIColors fxColors[256]={ GUI_COLOR_PATTERN_EFFECT_MISC, // 00 GUI_COLOR_PATTERN_EFFECT_PITCH, // 01 diff --git a/src/gui/guiConst.h b/src/gui/guiConst.h index 4456ebd3c..60c58a486 100644 --- a/src/gui/guiConst.h +++ b/src/gui/guiConst.h @@ -59,4 +59,5 @@ extern const int altValues[24]; extern const int vgmVersions[7]; extern const FurnaceGUIColors fxColors[256]; extern const FurnaceGUIColors fxColorsSort[10]; -extern const char* fxColorsNames[10]; \ No newline at end of file +extern const char* fxColorsNames[10]; +extern const char* chanNames[]; \ No newline at end of file