text calc part 0

This commit is contained in:
Eknous-P 2024-03-21 23:43:23 +04:00
parent 0381bd7d43
commit 1bf6385561
2 changed files with 13 additions and 1 deletions

View file

@ -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

View file

@ -60,3 +60,4 @@ extern const int vgmVersions[7];
extern const FurnaceGUIColors fxColors[256];
extern const FurnaceGUIColors fxColorsSort[10];
extern const char* fxColorsNames[10];
extern const char* chanNames[];