mirror of https://github.com/mgba-emu/mgba.git
Core: Expose timing
This commit is contained in:
parent
0dc7da9a74
commit
b913419069
|
@ -44,6 +44,7 @@ struct mVideoLogContext;
|
|||
struct mCore {
|
||||
void* cpu;
|
||||
void* board;
|
||||
struct mTiming* timing;
|
||||
struct mDebugger* debugger;
|
||||
struct mDebuggerSymbols* symbolTable;
|
||||
|
||||
|
|
|
@ -99,6 +99,7 @@ static bool _GBCoreInit(struct mCore* core) {
|
|||
}
|
||||
core->cpu = cpu;
|
||||
core->board = gb;
|
||||
core->timing = &gb->timing;
|
||||
gbcore->overrides = NULL;
|
||||
gbcore->debuggerPlatform = NULL;
|
||||
gbcore->cheatDevice = NULL;
|
||||
|
|
|
@ -148,6 +148,7 @@ static bool _GBACoreInit(struct mCore* core) {
|
|||
}
|
||||
core->cpu = cpu;
|
||||
core->board = gba;
|
||||
core->timing = &gba->timing;
|
||||
core->debugger = NULL;
|
||||
core->symbolTable = NULL;
|
||||
gbacore->overrides = NULL;
|
||||
|
|
Loading…
Reference in New Issue