Skip to content

Commit

Permalink
fixed bug introduced in r13
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAaronLopezGarcia committed Sep 11, 2024
1 parent b3556d1 commit 368cdb9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
- Updated `Despertar del Cementerio` to `Version 10`. Now compatible with all PSP models.
- Can now install `cIPL` on all PSP models.
- `Custom App` location has been changed to `/PSP/APP/CUSTOM/EBOOT.PBP`
#### Rev 14
- Fixed bug introduced in r13.
#### Rev 13
- Settings are now loaded (and some handled) earlier at boot. This fixes `cheatdevice_remastered` when using `Force Extra RAM`.
- Added `VHBL` theme for Custom Launcher.
Expand Down
2 changes: 1 addition & 1 deletion common/include/ark.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
#define ARK_MAJOR_VERSION 4
#define ARK_MINOR_VERSION 20
#define ARK_MICRO_VERSION 69
#define ARK_REVISION 13
#define ARK_REVISION 14
#define MAX_FLASH0_SIZE 0x32000

/*
Expand Down
2 changes: 1 addition & 1 deletion core/compat/psp/syspatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ void PSPOnModuleStart(SceModule2 * mod){
goto flush;
}

if (strcmp(mod->modname, "sceUtility_Driver") == 0){
if (strcmp(mod->modname, "sceImpose_Driver") == 0){
// Handle extra ram setting
handleExtraRam();
// Handle Inferno cache setting
Expand Down
2 changes: 1 addition & 1 deletion core/systemctrl/src/loadercore.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ int InitKernelStartModule(int modid, SceSize argsize, void * argp, int * modstat
}

// load settings before utility module
if (!settingsLoaded && strcmp(modname, "sceUtility_Driver") == 0){
if (!settingsLoaded && strcmp(modname, "sceImpose_Driver") == 0){
// Check ARK install path
checkArkPath();
// Check controller input to disable settings and/or plugins
Expand Down

0 comments on commit 368cdb9

Please sign in to comment.