GUI: update newSong.cpp
This commit is contained in:
parent
d6a24cd32a
commit
7cb1504215
|
|
@ -121,18 +121,16 @@ void FurnaceGUI::drawNewSong() {
|
|||
if (chipCounts.find(chip.sys)==chipCounts.end()) {
|
||||
chipCounts[chip.sys]=1;
|
||||
chips.push_back(chip.sys);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
chipCounts[chip.sys]+=1;
|
||||
}
|
||||
}
|
||||
int num_chips = chips.size();
|
||||
for (int chipIndex = 0; chipIndex < num_chips; chipIndex++) {
|
||||
for (size_t chipIndex=0; chipIndex<chips.size(); chipIndex++) {
|
||||
DivSystem chip=chips[chipIndex];
|
||||
const DivSysDef* sysDef=e->getSystemDef(chip);
|
||||
ImGui::Text("%s (x%d): ",sysDef->name,chipCounts[chip]);
|
||||
ImGui::TextWrapped("%s",sysDef->description);
|
||||
if (chipIndex + 1 < num_chips) {
|
||||
if (chipIndex+1<chips.size()) {
|
||||
ImGui::Separator();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue