Debugger: Fix Python build

This commit is contained in:
Vicki Pfau 2020-07-31 19:03:42 -07:00
parent a98c01bafc
commit 1756baae74
3 changed files with 3 additions and 3 deletions

View File

@ -96,7 +96,7 @@ void CLIDebuggerAttachBackend(struct CLIDebugger*, struct CLIDebuggerBackend*);
bool CLIDebuggerTabComplete(struct CLIDebugger*, const char* token, bool initial, size_t len);
bool CLIDebuggerRunCommand(struct CLIDebugger* debugger, const char* line, size_t count);
#if ENABLE_SCRIPTING
#ifdef ENABLE_SCRIPTING
void CLIDebuggerScriptEngineInstall(struct mScriptBridge* sb);
#endif

View File

@ -13,7 +13,7 @@
#include <mgba-util/string.h>
#include <mgba-util/vfs.h>
#if ENABLE_SCRIPTING
#ifdef ENABLE_SCRIPTING
#include <mgba/core/scripting.h>
#endif

View File

@ -14,7 +14,7 @@
#include <mgba/internal/debugger/gdb-stub.h>
#endif
#if ENABLE_SCRIPTING
#ifdef ENABLE_SCRIPTING
#include <mgba/core/scripting.h>
#endif