mGUI: Enable auto-softpatching (closes #2899)

This commit is contained in:
Vicki Pfau 2023-04-26 01:05:11 -07:00
parent 622c2491b9
commit ba6865b570
2 changed files with 2 additions and 0 deletions

View File

@ -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)

View File

@ -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);