mirror of https://github.com/mgba-emu/mgba.git
Debugger: Remove redundant ifdef
This commit is contained in:
parent
bdffa83e6b
commit
5ebf3822cc
|
@ -1427,9 +1427,7 @@ static void _loadSymbols(struct CLIDebugger* debugger, struct CLIDebugVector* dv
|
||||||
#ifdef USE_ELF
|
#ifdef USE_ELF
|
||||||
struct ELF* elf = ELFOpen(vf);
|
struct ELF* elf = ELFOpen(vf);
|
||||||
if (elf) {
|
if (elf) {
|
||||||
#ifdef ENABLE_DEBUGGERS
|
|
||||||
mCoreLoadELFSymbols(symbolTable, elf);
|
mCoreLoadELFSymbols(symbolTable, elf);
|
||||||
#endif
|
|
||||||
ELFClose(elf);
|
ELFClose(elf);
|
||||||
} else
|
} else
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue