All: Include cleanup

This commit is contained in:
Jeffrey Pfau 2016-12-26 23:27:32 -08:00
parent 03ca7515b3
commit 463ce99739
6 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "cheats.h" #include "cheats.h"
#include "core/core.h"
#include "gba/cheats/gameshark.h" #include "gba/cheats/gameshark.h"
#include "gba/cheats/parv3.h" #include "gba/cheats/parv3.h"
#include "gba/gba.h" #include "gba/gba.h"

View File

@ -152,8 +152,11 @@ void GBAHalt(struct GBA* gba);
void GBAStop(struct GBA* gba); void GBAStop(struct GBA* gba);
void GBADebug(struct GBA* gba, uint16_t value); void GBADebug(struct GBA* gba, uint16_t value);
#ifdef USE_DEBUGGERS
struct mDebugger;
void GBAAttachDebugger(struct GBA* gba, struct mDebugger* debugger); void GBAAttachDebugger(struct GBA* gba, struct mDebugger* debugger);
void GBADetachDebugger(struct GBA* gba); void GBADetachDebugger(struct GBA* gba);
#endif
void GBASetBreakpoint(struct GBA* gba, struct mCPUComponent* component, uint32_t address, enum ExecutionMode mode, void GBASetBreakpoint(struct GBA* gba, struct mCPUComponent* component, uint32_t address, enum ExecutionMode mode,
uint32_t* opcode); uint32_t* opcode);

View File

@ -10,7 +10,6 @@
CXX_GUARD_START CXX_GUARD_START
#include "core/core.h"
#include "core/timing.h" #include "core/timing.h"
#include "gba/memory.h" #include "gba/memory.h"

View File

@ -7,6 +7,7 @@
#include "LogController.h" #include "LogController.h"
#include "core/core.h"
#include "core/thread.h" #include "core/thread.h"
#include "gba/audio.h" #include "gba/audio.h"

View File

@ -10,6 +10,7 @@
#include <QAudioOutput> #include <QAudioOutput>
#include "core/core.h"
#include "core/thread.h" #include "core/thread.h"
using namespace QGBA; using namespace QGBA;

View File

@ -5,6 +5,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "sdl-audio.h" #include "sdl-audio.h"
#include "core/core.h"
#include "core/thread.h" #include "core/thread.h"
#include "gba/gba.h" #include "gba/gba.h"