mirror of https://github.com/mgba-emu/mgba.git
All: Include cleanup
This commit is contained in:
parent
03ca7515b3
commit
463ce99739
|
@ -5,6 +5,7 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#include "cheats.h"
|
||||
|
||||
#include "core/core.h"
|
||||
#include "gba/cheats/gameshark.h"
|
||||
#include "gba/cheats/parv3.h"
|
||||
#include "gba/gba.h"
|
||||
|
|
|
@ -152,8 +152,11 @@ void GBAHalt(struct GBA* gba);
|
|||
void GBAStop(struct GBA* gba);
|
||||
void GBADebug(struct GBA* gba, uint16_t value);
|
||||
|
||||
#ifdef USE_DEBUGGERS
|
||||
struct mDebugger;
|
||||
void GBAAttachDebugger(struct GBA* gba, struct mDebugger* debugger);
|
||||
void GBADetachDebugger(struct GBA* gba);
|
||||
#endif
|
||||
|
||||
void GBASetBreakpoint(struct GBA* gba, struct mCPUComponent* component, uint32_t address, enum ExecutionMode mode,
|
||||
uint32_t* opcode);
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
CXX_GUARD_START
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/timing.h"
|
||||
#include "gba/memory.h"
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include "LogController.h"
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/thread.h"
|
||||
#include "gba/audio.h"
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include <QAudioOutput>
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/thread.h"
|
||||
|
||||
using namespace QGBA;
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
#include "sdl-audio.h"
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/thread.h"
|
||||
#include "gba/gba.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue