Recent logs - v1.11.3

To see your stuff show here, enable Compatibility Server Reports in PPSSPP.

Click on a version, game, or report message to show similar entries. Hover over version to see platform info, and hover over a game title to see region and version info.

Game title Version Latest Report Message
頭文字D STREET STAGE v1.11.3 2023-03-26 sceDmacMemcpy(dest=041d9c00, src=092f1380, size=2048): overlapping read
MONSTER HUNTER FREEDOM UNITE™ v1.11.3 2023-03-25 sceDmacMemcpy(dest=0414e000, src=095cdc20, size=243728): overlapping read
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(09676a80, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(098cd480, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(09693f40, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(09926880, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(095e6540, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(0987e380, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.11.3 2023-03-25 80630006=sceAtracSetDataAndGetID(098d9480, 00000800): invalid RIFF header
SOCOM: U.S. Navy SEALs Fireteam Bravo 3 v1.11.3 2023-03-25 Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader. Please contact [email protected] with the shader causing the problem, along with this error message. Mali online shader compiler r10p0-00rel0 [Revision 96995]. 01710551:00010b39 HWX C T N LM Tex TexProjPos UVMtx Light: 0: c:1 t:0 1: c:1 t:1 2: c:1 t:1 MatUp:1 Cull #version 100 // Mali-400 MP - GLSL 100 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) attribute vec3 position; attribute mediump vec3 normal; attribute vec2 texcoord; attribute lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform mediump mat4 u_texmtx; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform lowp vec3 u_lightspecular0; uniform vec3 u_lightpos1; uniform mediump vec3 u_lightatt1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform lowp vec3 u_lightspecular1; uniform vec3 u_lightpos2; uniform mediump vec3 u_lightatt2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec3 u_lightspecular2; uniform lowp vec4 u_ambient; uniform lowp vec3 u_matdiffuse; uniform lowp vec4 u_matspecular; uniform lowp vec3 u_matemissive; uniform lowp vec4 u_matambientalpha; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; varying lowp vec4 v_color0; varying lowp vec3 v_color1; varying mediump vec3 v_texcoord; void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalize(mul(vec4(normal, 0.0), u_world).xyz); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); lowp vec4 lightSum0 = u_ambient * color0 + vec4(u_matemissive, 0.0); lowp vec3 lightSum1 = splat3(0.0); vec3 toLight; lowp vec3 diffuse; float distance; lowp float lightScale; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0); if (ldot >= 0.0) { ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal); if (u_matspecular.a <= 0.0) { ldot = 1.0; } else { ldot = pow(max(ldot, 0.0), u_matspecular.a); } if (ldot > 0.0) lightSum1 += u_lightspecular0 * u_matspecular.rgb * ldot ; } lightSum0.rgb += (u_lightambient0 * color0.rgb + diffuse); toLight = u_lightpos1 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ldot, 0.0); if (ldot >= 0.0) { ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal); if (u_matspecular.a <= 0.0) { ldot = 1.0; } else { ldot = pow(max(ldot, 0.0), u_matspecular.a); } if (ldot > 0.0) lightSum1 += u_lightspecular1 * u_matspecular.rgb * ldot * lightScale; } lightSum0.rgb += (u_lightambient1 * color0.rgb + diffuse) * lightScale; toLight = u_lightpos2 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse2 * u_matdiffuse) * max(ldot, 0.0); if (ldot >= 0.0) { ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal); if (u_matspecular.a <= 0.0) { ldot = 1.0; } else { ldot = pow(max(ldot, 0.0), u_matspecular.a); } if (ldot > 0.0) lightSum1 += u_lightspecular2 * u_matspecular.rgb * ldot * lightScale; } lightSum0.rgb += (u_lightambient2 * color0.rgb + diffuse) * lightScale; v_color0 = clamp(lightSum0, 0.0, 1.0); v_color1 = clamp(lightSum1, 0.0, 1.0); v_texcoord = mul(vec4(position, 1.0), u_texmtx).xyz * vec3(u_uvscaleoffset.xy, 1.0); vec3 projPos = outPos.xyz / outPos.w;
Def Jam® Fight For NY™: The Takeover v1.11.3 2023-03-25 sceDmacMemcpy(dest=097bf0c0, src=08400000, size=641344): overlapping read
FIFA 11 v1.11.3 2023-03-25 GE Interrupt: newState might be 16
FIFA 11 v1.11.3 2023-03-25 GE Interrupt: newState might be 15
FIFA 11 v1.11.3 2023-03-25 GE Interrupt: newState might be 14
FIFA 11 v1.11.3 2023-03-25 GE Interrupt: newState might be 13
FIFA 11 v1.11.3 2023-03-25 GE Interrupt: newState might be 12
TEKKEN 6 v1.11.3 2023-03-25 800200d2=scePsmfPlayerSetPsmfCB(090e65e4, disc0:/PSP_GAME/USRDIR/movie/title.pmf): too many streams in PSMF video, bogus data
TEKKEN 6 v1.11.3 2023-03-25 scePsmfPlayerSetPsmf*: incorrect PSMF magic (c2ef1f80), bad data
eFootball 2023 By Tutoriales Bendezu v1.11.3 2023-03-25 Unknown GetPointer 00000000 PC 08815fc0 LR 08815fd4
NARUTO SHIPPUDEN: Ultimate Ninja Impact v1.11.3 2023-03-25 00000000=sceUtilityScreenshotInitStart(09d3fb88)
NARUTO SHIPPUDEN: Ultimate Ninja Impact v1.11.3 2023-03-25 00000000=sceUtilityScreenshotInitStart(09d3fb48)
ウルトラマン Fighting Evolution 0 v1.11.3 2023-03-25 WriteToHardware: Invalid address 00002e96 near PC 088d42d4 LR 088d4340
DBZ TTT:The Legacy Of Tenkaichi V2 v1.11.3 2023-03-25 Unknown GetPointer 00000000 PC 08804040 LR 08000030
Def Jam® Fight For NY™: The Takeover v1.11.3 2023-03-24 sceDmacMemcpy(dest=098adc00, src=08400000, size=72384): overlapping read
MONSTER HUNTER FREEDOM UNITE™ v1.11.3 2023-03-24 sceDmacMemcpy(dest=0414e000, src=095b70c0, size=237168): overlapping read
Dragon Ball Z: Tenkaichi Tag Team v1.11.3 2023-03-24 MIPSCompileOp: Invalid instruction 79914920
Dragon Ball Z: Tenkaichi Tag Team v1.11.3 2023-03-24 MIPSCompileOp: Invalid instruction b2b645a0
Dragon Ball Z: Tenkaichi Tag Team v1.11.3 2023-03-24 MIPSCompileOp: Invalid instruction 7868e7a0
Def Jam® Fight For NY™: The Takeover v1.11.3 2023-03-24 sceDmacMemcpy(dest=095625c0, src=08400000, size=641344): overlapping read
WWE 2K21 PRICELESS ALACRITY V3.0.1 v1.11.3 2023-03-24 80630007=sceAtracSetData(2, 08d4b180, 00006b90): atracID uses different codec type than data
FIFA 11 v1.11.3 2023-03-24 sceKernelLoadModule: unsupported options size=00000014, flags=08c98210, pos=0, access=1, data=2, text=2
FIFA 11 v1.11.3 2023-03-24 sceKernelCreateThread(name=sceNetAdhocAuth_Service): unsupported attributes 00001006
FIFA 11 v1.11.3 2023-03-24 sceKernelLoadModule: unsupported options size=00000014, flags=08caf9fc, pos=0, access=1, data=1, text=1
โทคิเด็น คิวามิ - แพทช์อังกฤษ v3.0 โดย HoaiTrung 97 FT v1.11.3 2023-03-23 sceDmacMemcpy(dest=09a8c220, src=09ba1980, size=6144): overlapping read
eFootball PES 2020 "C19" v1.11.3 2023-03-23 sceDmacMemcpy(dest=04154000, src=091f6230, size=557056): overlapping read
eFootball PES 2023 By Milad Safaei v1.11.3 2023-03-23 Game install with no files / data
WWE 2K21 PRICELESS ALACRITY V3.0.1 v1.11.3 2023-03-23 80630007=sceAtracSetData(3, 08d4b180, 000078b0): atracID uses different codec type than data
โทคิเด็น คิวามิ - แพทช์อังกฤษ v3.0 โดย HoaiTrung 97 FT v1.11.3 2023-03-23 sceDmacMemcpy(dest=09ab8960, src=09ba1980, size=2180): overlapping read
eFootball Chelito 19 v1.11.3 2023-03-25 Unknown GetPointer 00000000 PC 08a3f47c LR 08a3f47c
SBK®09 Superbike World Championship v1.11.3 2023-03-23 sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 0966bce0): duplicate handler
PES 2023 BY SPARTAN JR8 v1.11.3 2023-03-23 ReadFromHardware: Invalid address c3bfc3bf near PC c3bfc3bf LR 088c9688
MONSTER HUNTER FREEDOM UNITE™ v1.11.3 2023-03-23 sceDmacMemcpy(dest=0414e000, src=094b20f0, size=248368): overlapping read
Hive Sweeper v1.11.3 2023-03-23 sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2
Hive Sweeper v1.11.3 2023-03-23 sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 002b393e
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 433e3ea2
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction b6afe23e
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 43434343
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 43e23e43
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 43afe243
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction b6e2dbaf
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 4e4343af
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 65d7ebb6
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 704e49b6
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 4e494e88
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction cddbe2d4
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 0000001e
eFootball Chelito 19 v1.11.3 2023-03-22 Branch in RSRTComp delay slot at 00010710 in block starting at 00010710
eFootball Chelito 19 v1.11.3 2023-03-22 Branch in RSRTComp delay slot at 00010708 in block starting at 00010708
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 75730000
eFootball Chelito 19 v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 00716735
eFootball Chelito 19 v1.11.3 2023-03-22 Unknown GetPointer 000000c0 PC 088113c0 LR 088113dc
The Godfather® v1.11.3 2023-03-22 Rendering to framebuffer offset: 04161800 +64x0
ソードアート・オンライン -インフィニティ・モーメント- v1.11.3 2023-03-22 sceDmacMemcpy(dest=08495440, src=091a2780, size=11616): overlapping read
eFootball 2023 By Tutoriales Bendezu v1.9.4 2023-03-24 Unknown GetPointer 00000000 PC 08815f0c LR 08000020
eFootball PES 2021 T. Bendezu "C19" v1.11.3 2023-03-22 Unknown GetPointer 66c33b97 PC 0884d7b4 LR 0884d7d4
ナルティメットポータブル 無幻城の巻 v1.11.3 2023-03-22 sceKernelCreateThread(name=sceNetAdhocAuth_Service): unsupported attributes 00001006
ナルティメットポータブル 無幻城の巻 v1.11.3 2023-03-22 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872
ナルティメットポータブル 無幻城の巻 v1.11.3 2023-03-22 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024
ナルティメットポータブル 無幻城の巻 v1.11.3 2023-03-22 sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256
ナルティメットポータブル 無幻城の巻 v1.11.3 2023-03-22 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204
WWE 2K22 BY KING ROY GAMER v1.11.3 2023-03-22 80630007=sceAtracSetData(2, 08d4b180, 00002c20): atracID uses different codec type than data
WWE 2K22 BY KING ROY GAMER v1.11.3 2023-03-22 80630007=sceAtracSetData(2, 08d4b180, 000084d4): atracID uses different codec type than data
SBK®08 Superbike World Championship v1.11.3 2023-03-22 sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 09426970): duplicate handler
WWE 2K22 V1.50 BY GAMER MODDER. v1.11.3 2023-03-22 Branch in JumpReg delay slot at 08fca08c in block starting at 08fca044
WWE 2K22 V1.50 BY GAMER MODDER. v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 00010005
WWE 2K22 V1.50 BY GAMER MODDER. v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 00020001
WWE 2K22 V1.50 BY GAMER MODDER. v1.11.3 2023-03-22 MIPSCompileOp: Invalid instruction 00100005
Prince of Persia The Forgotten Sands™ v1.11.3 2023-03-21 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0948274c, 4, 00000000, 0)
Prince of Persia The Forgotten Sands™ v1.11.3 2023-03-21 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0948274c, 4, 00000000, 0)
PES 2019 GLGM PATCHS v1.11.3 2023-03-21 80630006=sceAtracSetDataAndGetID(09a25200, 00001000): invalid RIFF header
SBK®08 Superbike World Championship v1.11.3 2023-03-21 sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 08f5fc80): duplicate handler
Toriko: Gourmet Survival 2 v1.11.3 2023-03-21 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08849794
SplinterCell v1.11.3 2023-03-21 Unknown GetPointer 00001db5 PC 0881c21c LR 0881e838
WWE'12 v1.11.3 2023-03-21 sceDmacMemcpy(dest=04175ee0, src=0955b0d0, size=65552): overlapping read
SBK®08 Superbike World Championship v1.11.3 2023-03-21 sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 091b7e30): duplicate handler
SBK®08 Superbike World Championship v1.11.3 2023-03-21 sceKernelRegisterSubIntrHandler(30, 0, 089c90fc, 0912e8e0): duplicate handler
Toriko: Gourmet Survival 2 v1.11.3 2023-03-21 FBO using existing buffer as depthbuffer, 04116200/04088000 and 04088000/00000000
Toriko: Gourmet Survival 2 v1.11.3 2023-03-21 FBO using existing buffer as depthbuffer, 040cc000/04088000 and 04088000/00000000
ソードアート・オンライン -インフィニティ・モーメント- v1.11.3 2023-03-21 sceDmacMemcpy(dest=041d3000, src=08d12190, size=184320): overlapping read
JOGRESS V3 v1.11.3 2023-03-21 Branch in Jump delay slot at 08be2644 in block starting at 08be2640
JOGRESS V3 v1.11.3 2023-03-21 Branch in RSZeroComp delay slot at 08be2638 in block starting at 08be25c0
JOGRESS V3 v1.11.3 2023-03-21 Branch in RSZeroComp delay slot at 08bdc318 in block starting at 08bdc300
God of War: Chains of Olympus v1.11.3 2023-03-21 Jump to invalid address: 02e28b00
MLB 11 The Show™ v1.11.3 2023-03-21 scePsmfPlayerSetPsmf*: incorrect PSMF magic (10000019), bad data
eFootball 2023 By Tutoriales Bendezu v1.11.3 2023-03-20 sceKernelLoadModule: unsupported options size=00000014, flags=08b10000, pos=0, access=1, data=2, text=2
eFootball 2023 By Tutoriales Bendezu v1.11.3 2023-03-20 sceKernelLoadModule: unsupported options size=00000014, flags=08b10000, pos=0, access=1, data=1, text=1
FINAL FANTASY 零式 ディスク1 v1.11.3 2023-03-20 sceDmacMemcpy(dest=08545000, src=093a86c0, size=207152): overlapping read
SBK-07 v1.11.3 2023-03-20 sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 0900d530): duplicate handler
GTA: Liberty City Stories v1.11.3 2023-03-20 MIPSCompileOp: Invalid instruction 9d6ea192