Merge pull request #2716 from kugelfuhr/kugelfuhr/fix-2649

Fix an internal error in da65 when there are certain labels in a skipped section
This commit is contained in:
Bob Andrews
2025-06-19 19:33:17 +02:00
committed by GitHub

View File

@@ -146,8 +146,7 @@ unsigned GetGranularity (attr_t Style)
case atAddrTab: return 2;
case atRtsTab: return 2;
case atTextTab: return 1;
case atSkip:
case atSkip: return 1;
default:
Internal ("GetGranularity called for style = %d", Style);
return 0;