mirror of https://github.com/mgba-emu/mgba.git
Fix misplaced return in previous PR
This commit is contained in:
parent
d1ab52112a
commit
eb1b5718c3
|
@ -1264,9 +1264,9 @@ static void _GBACoreLoadSymbols(struct mCore* core, struct VFile* vf) {
|
||||||
if (vf) {
|
if (vf) {
|
||||||
mDebuggerLoadARMIPSSymbols(core->symbolTable, vf);
|
mDebuggerLoadARMIPSSymbols(core->symbolTable, vf);
|
||||||
vf->close(vf);
|
vf->close(vf);
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
if (!vf && gba->mbVf) {
|
if (!vf && gba->mbVf) {
|
||||||
closeAfter = false;
|
closeAfter = false;
|
||||||
|
|
Loading…
Reference in New Issue