I hope this message finds you well. After a bit of a hiatus, I've recently found some time to delve back into tinkering with z88dk on the Sinclair ZX81. However, I've hit a roadblock while compiling my old code that once worked seamlessly.
The problem arises with this type of array declaration:
Code: Select all
const unsigned char HighResPatterns[][]= { // rom idx 26 pseudo hires udg characters
{188,188,188,188,188,188,188,188}, // SN_BLANK 0
{ 60, 60, 60, 60, 60, 60, 60, 60}, // SN_WALL 1
{ 60,148,148,148,148,148,148, 60}, // SN_TAIL 2
{ 39, 39, 39, 60, 60, 39, 39, 39} // SN_HEAD 3
};
Thank you in advance for your valuable help.
Best regards,
Camilo.