Tried updating my project today with the latest commit, and I had 2 compiler errors.
One was a function with an un-specified return type, linking to this. The compiler assumed type int. Declaring it as a void return type fixed this
The second was an invalid type error on this line. Looking at the commit history, it looks like the POKEY_PutByte function should be called with OFFSET_AUDCTL instead of with AUDCTL. I did this and it fixed the error
Tried updating my project today with the latest commit, and I had 2 compiler errors.
One was a function with an un-specified return type, linking to this. The compiler assumed type
int. Declaring it as a void return type fixed thisThe second was an invalid type error on this line. Looking at the commit history, it looks like the
POKEY_PutBytefunction should be called withOFFSET_AUDCTLinstead of withAUDCTL. I did this and it fixed the error