Help with "Compilation Error"

Compilation error: cannot convert ‘StyleFactory*’ to ‘const char*’ in initialization

Pastebin

Post your config as well, you have a syntax error in one or more presets.

Config

You are missing the track at line 153

All presets need to be in the following syntax:

{ "font;common", "font/tracks/track.wav",
StylePtr<...>(),
"name"
},

if you don’t want a track you still need to account for it with empty quotation marks like so:

{ "font;common", "",
StylePtr<...>(),
"name"
},

You should also remove this at line 29, it doesn’t belong and no idea why installers keep putting it there.

#include "../sound/sound_library.h"
1 Like

Fantastic! Everything is working as it should again, thank you so much!

You’re welcome.