asyncResourceGatherer: don't create duplicate dma frames for a specific stringPort

This commit is contained in:
Maximilian Seidler 2024-06-27 20:02:03 +02:00
parent ee9d75b580
commit d2324c25bd
1 changed files with 6 additions and 0 deletions

View File

@ -74,6 +74,12 @@ void CAsyncResourceGatherer::recheckDMAFramesFor(COutput* output) {
} }
} }
for (auto& dma : dmas) {
if (dma->name == output->stringPort) {
shouldMake = false;
}
}
if (!shouldMake) if (!shouldMake)
return; return;