Skip to content

Commit be8258f

Browse files
committed
Bumped Version + Small Fix
1 parent c2c6726 commit be8258f

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

ps5-kstuff/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2854,7 +2854,7 @@ int main(void* ds, int a, int b, uintptr_t c, uintptr_t d)
28542854
int minor_dec = (minor_bcd >> 4) * 10 + (minor_bcd & 0xF);
28552855

28562856
char msg[64], *p = msg;
2857-
char *hdr = "Welcome To Kstuff 1.6.5\nPlayStation 5 FW: ";
2857+
char *hdr = "Welcome To Kstuff 1.6.6\nPlayStation 5 FW: ";
28582858
while (*hdr) *p++ = *hdr++;
28592859

28602860
if (major >= 10) *p++ = '0' + major / 10;

ps5-kstuff/uelf/fself.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ int try_handle_fself_mailbox(uint64_t* regs, uint64_t lr)
175175
uint64_t ctx[8];
176176
copy_from_kernel(
177177
ctx,
178+
(fwver >= 0x1000) ? kpeek64(regs[RBP] - 232) :
178179
(fwver >= 0x900) ? regs[R14] :
179180
(fwver >= 0x800 && fwver <= 0x860) ? kpeek64(regs[RBP] - 240) :
180181
regs[RBX],

0 commit comments

Comments
 (0)