video_core/ast: Unindent most of IsFullyDecompiled() by one level

This commit is contained in:
Lioncash 2019-10-05 08:50:00 -04:00
parent 6c41d1cd7e
commit d82b181d44

View file

@ -340,8 +340,9 @@ public:
bool IsFullyDecompiled() const {
if (full_decompile) {
return gotos.size() == 0;
} else {
return gotos.empty();
}
for (ASTNode goto_node : gotos) {
auto label_index = goto_node->GetGotoLabel();
if (!label_index) {
@ -354,7 +355,6 @@ public:
}
return true;
}
}
ASTNode GetProgram() const {
return main_node;