Revert "DmaData and Recompiler fixes (#1775)" (#1784)

This reverts commit cafd40f2c2.
This commit is contained in:
TheTurtle 2024-12-14 16:17:14 +02:00 committed by GitHub
parent 27447537c3
commit e9ede8d627
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 140 deletions

View file

@ -80,7 +80,6 @@ void CFG::EmitLabels() {
if (inst.IsUnconditionalBranch()) {
const u32 target = inst.BranchTarget(pc);
AddLabel(target);
AddLabel(pc + inst.length);
} else if (inst.IsConditionalBranch()) {
const u32 true_label = inst.BranchTarget(pc);
const u32 false_label = pc + inst.length;