mirror of https://github.com/mgba-emu/mgba.git
mGUI: Enable auto-softpatching (closes #2899)
This commit is contained in:
parent
622c2491b9
commit
ba6865b570
1
CHANGES
1
CHANGES
|
@ -14,6 +14,7 @@ Misc:
|
||||||
- Core: Handle relative paths for saves, screenshots, etc consistently (fixes mgba.io/i/2826)
|
- Core: Handle relative paths for saves, screenshots, etc consistently (fixes mgba.io/i/2826)
|
||||||
- GB Serialize: Add missing savestate support for MBC6 and NT (newer)
|
- GB Serialize: Add missing savestate support for MBC6 and NT (newer)
|
||||||
- GBA: Improve detection of valid ELF ROMs
|
- GBA: Improve detection of valid ELF ROMs
|
||||||
|
- mGUI: Enable auto-softpatching (closes mgba.io/i/2899)
|
||||||
- Scripting: Add `callbacks:oneshot` for single-call callbacks
|
- Scripting: Add `callbacks:oneshot` for single-call callbacks
|
||||||
|
|
||||||
0.10.2: (2023-04-23)
|
0.10.2: (2023-04-23)
|
||||||
|
|
|
@ -456,6 +456,7 @@ void mGUIRun(struct mGUIRunner* runner, const char* path) {
|
||||||
mLOG(GUI_RUNNER, DEBUG, "Loading save...");
|
mLOG(GUI_RUNNER, DEBUG, "Loading save...");
|
||||||
mCoreAutoloadSave(runner->core);
|
mCoreAutoloadSave(runner->core);
|
||||||
mCoreAutoloadCheats(runner->core);
|
mCoreAutoloadCheats(runner->core);
|
||||||
|
mCoreAutoloadPatch(runner->core);
|
||||||
if (runner->setup) {
|
if (runner->setup) {
|
||||||
mLOG(GUI_RUNNER, DEBUG, "Setting up runner...");
|
mLOG(GUI_RUNNER, DEBUG, "Setting up runner...");
|
||||||
runner->setup(runner);
|
runner->setup(runner);
|
||||||
|
|
Loading…
Reference in New Issue