Page 1 of 1

Posted: 21 Sep 2017, 13:41
by sephult
Hello,

I noticed the module color was coming up black so I wanted to fix it to show as a MIDI module.
I did find that this "backcolor" was commented out, and

Code: Select all

clMidiModuleColor
throws error of not being defined.

What do I have to do to get this to show up properly?

-s

Posted: 21 Sep 2017, 13:45
by sephult
Again!

hahaha :lol:

Well for reference the example has this as the color set...but it is the wrong case and comes up "undefined"

Code: Select all

pModuleInfo->BackColor          = sdkGetUsineColor(clMIDIModuleColor);
This is the correct way:

Code: Select all

pModuleInfo->BackColor          = sdkGetUsineColor(clMidiModuleColor);
And then it will compile...

-s