From fd894d4c698408baf367a347f5e3ce7823930d51 Mon Sep 17 00:00:00 2001 From: eladash Date: Thu, 6 Dec 2018 14:09:17 +0200 Subject: [PATCH] hle gcm: Fix cellGcmGetNotifyDataAddress --- rpcs3/Emu/Cell/Modules/cellGcmSys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp b/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp index c005d0fac2..e451fb8cba 100644 --- a/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp +++ b/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp @@ -151,7 +151,7 @@ u32 cellGcmGetNotifyDataAddress(u32 index) return 0; } - return (entry << 20) + (index * 0x20); + return (entry << 20) + (index * 0x40); } /*