Fix misplaced return in previous PR

This commit is contained in:
Adam Higerd 2024-07-12 19:26:42 -05:00 committed by Vicki Pfau
parent d1ab52112a
commit eb1b5718c3
1 changed files with 1 additions and 1 deletions

View File

@ -1264,8 +1264,8 @@ static void _GBACoreLoadSymbols(struct mCore* core, struct VFile* vf) {
if (vf) {
mDebuggerLoadARMIPSSymbols(core->symbolTable, vf);
vf->close(vf);
return;
}
return;
}
#endif
if (!vf && gba->mbVf) {