Skip to content

Commit

Permalink
mGUI: Enable auto-softpatching (closes #2899)
Browse files Browse the repository at this point in the history
  • Loading branch information
endrift committed Apr 26, 2023
1 parent 622c249 commit ba6865b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Misc:
- 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)
- GBA: Improve detection of valid ELF ROMs
- mGUI: Enable auto-softpatching (closes mgba.io/i/2899)
- Scripting: Add `callbacks:oneshot` for single-call callbacks

0.10.2: (2023-04-23)
Expand Down
1 change: 1 addition & 0 deletions src/feature/gui/gui-runner.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ void mGUIRun(struct mGUIRunner* runner, const char* path) {
mLOG(GUI_RUNNER, DEBUG, "Loading save...");
mCoreAutoloadSave(runner->core);
mCoreAutoloadCheats(runner->core);
mCoreAutoloadPatch(runner->core);
if (runner->setup) {
mLOG(GUI_RUNNER, DEBUG, "Setting up runner...");
runner->setup(runner);
Expand Down

0 comments on commit ba6865b

Please sign in to comment.