Error: cannot convert 'StyleFactory*' to 'const char*' in initialization

I’m trying to add some soundfonts for my friend and I keep getting this error when I try to verify my config. I don’t understand what’s wrong with the affected lines because should be the exact same bladestyles as other working ones but with different colors.

full error message

full config file

You’re missing commas “,” after your font names in multiple presets.

Example:

   { "Ptero" "tracks/MMPR.wav",

Should be

   { "Ptero", "tracks/MMPR.wav",
1 Like

Ohhhh okay lol. I didn’t think to check there because the error message didn’t mention those lines. Thanks for pointing it out.