tile bank: help me build the jump table

This commit is contained in:
dwsJason 2018-08-16 22:02:03 -04:00
parent 54eae24600
commit ea2a67e2d3

View File

@ -158,6 +158,12 @@ RAWDATA* CompileTiles(RAWDATA* pTilesData, int bank)
char temp_label[256];
for (int idx = 0; idx < 256; ++idx)
{
sprintf(temp_label," da tile%d_%d\n", bank, idx);
AddString(result, temp_label);
}
for (int tileNo = 0; tileNo < 256; ++tileNo)
{
sprintf(temp_label,"tile%d_%d\n", bank, tileNo);