Skip to content

Commit

Permalink
Update v7
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 22, 2020
1 parent f8a9695 commit d8c763a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions adrenaline_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#ifndef __ADRENALINE_COMPAT_H__
#define __ADRENALINE_COMPAT_H__

#define ADRENALINE_VERSION_MAJOR 6
#define ADRENALINE_VERSION_MINOR 9
#define ADRENALINE_VERSION_MAJOR 7
#define ADRENALINE_VERSION_MINOR 0
#define ADRENALINE_VERSION ((ADRENALINE_VERSION_MAJOR << 16) | ADRENALINE_VERSION_MINOR)

#define xstr(s) #s
Expand Down Expand Up @@ -183,7 +183,7 @@ typedef struct {
#define ADRENALINE_ADDRESS 0xABCDE000

#define DRAW_NATIVE 0xABCDEF00
#define NATIVE_FRAMEBUFFER 0x0A000000
#define NATIVE_FRAMEBUFFER 0x0A400000

#define CONVERT_ADDRESS(addr) (0x68000000 + (addr & 0x0FFFFFFF))

Expand Down
Binary file modified bubble/pkg/sce_module/adrenaline_user.suprx
Binary file not shown.
1 change: 0 additions & 1 deletion cef/btcnf/pspbtcnf_recovery/pspbtcnf.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ $/kd/chkreg.prx VUP
$/kd/mesg_led_01g.prx VGUPAEM
$/kd/semawm.prx V
$/kd/amctrl.prx VGPAEM
$/kd/npdrm.prx VPEM
$/kd/iofilemgr_dnas.prx VGPAEM
$/kd/mediaman.prx VGUA
$/kd/np9660.prx EM
Expand Down
8 changes: 6 additions & 2 deletions cef/systemctrl/init_patch.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,13 @@ int sceKernelStartModulePatched(SceUID modid, SceSize argsize, void *argp, int *

plugindone = 1;

char *file = NULL;

int type = sceKernelInitKeyConfig();

if (type == PSP_INIT_KEYCONFIG_VSH && !sceKernelFindModuleByName661("scePspNpDrm_Driver")) {
goto START_MODULE;
}

char *file = NULL;
if (type == PSP_INIT_KEYCONFIG_VSH && !config.notusexmbplugins) {
file = "ms0:/seplugins/vsh.txt";
} else if (type == PSP_INIT_KEYCONFIG_GAME && !config.notusegameplugins) {
Expand Down
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ For 6.61 Adrenaline-6.4 or higher, you can use the `System Update` in the XMB to
Changelog
---------

### Changelog v7
- Fixed issue where plugins were loaded in recovery mode.
- Moved native display buffer to a different location, so GePatch works for some more games.

### Changelog v6.9
- Added support for native resolution patches.

Expand Down
Binary file modified user/flash0/kd/pspbtrnf.bin
Binary file not shown.
Binary file modified user/flash0/kd/systemctrl.prx
Binary file not shown.

0 comments on commit d8c763a

Please sign in to comment.