Plugin fails to compile

Fails here too and can’t see why. Can someone else have a look?

This, in plugin.hpp:

extern Model* Trigsplit;

introduces a variable called Trigsplit, but you also have a struct called Trigsplit:

struct Trigsplit : Module { ...

Did you mean to call the variable modelTrigsplit rather than Trigsplit? It looks that way, judging by this in trigsplit.cpp:

Model* modelTrigsplit = ...
4 Likes

You’ve done it, it compiles! Thank you so much

2 Likes