fix build

This commit is contained in:
tildearrow 2022-09-23 12:37:03 -05:00
parent ef9fedb0b8
commit 6b684d655a

View file

@ -72,7 +72,7 @@ void FurnaceGUI::drawDebug() {
for (int i=0; i<e->song.systemLen; i++) {
void* ch=e->getDispatch(i);
ImGui::TextColored(uiColors[GUI_COLOR_ACCENT_PRIMARY],"Chip %d: %s",i,getSystemName(e->song.system[i]));
if (e->song.system[i]==NULL) {
if (e->song.system[i]==DIV_SYSTEM_NULL) {
ImGui::Text("NULL");
} else {
putDispatchChip(ch,e->song.system[i]);