Recent logs - v1.13.2

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
eFootball PES 2023 "SNE" v1.13.2 2024-04-14 sceDmacMemcpy(dest=04154000, src=091f62f0, size=557056): overlapping read
UNDEAD KNIGHTS v1.13.2 2024-04-14 80630011=sceAtracSetDataAndGetID(00000000, 00000000): buffer too small
UNDEAD KNIGHTS v1.13.2 2024-04-14 sceKernelLoadModule: unsupported options size=00000014, flags=08c734c4, pos=0, access=1, data=2, text=2
Tomb Raider: Anniversary v1.13.2 2024-04-14 sceKernelLoadModule: unsupported options size=00000014, flags=08c734c4, pos=0, access=1, data=1, text=1
Tomb Raider: Anniversary v1.13.2 2024-04-14 sceKernelLoadModule: unsupported options size=00000014, flags=00000021, pos=0, access=1, data=2, text=2
Tomb Raider: Anniversary v1.13.2 2024-04-14 sceKernelLoadModule: unsupported options size=00000014, flags=00000021, pos=0, access=1, data=1, text=1
NAMCO MUSEUM BATTLE COLLECTION v1.13.2 2024-04-14 sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2
NAMCO MUSEUM BATTLE COLLECTION v1.13.2 2024-04-14 sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=1
Assassin's Creed: Bloodlines™ v1.13.2 2024-04-14 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09bc7e74, 4, 00000000, 0)
Assassin's Creed: Bloodlines™ v1.13.2 2024-04-14 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09bc7e74, 4, 00000000, 0)
EA-Sports FC PC-V v1.9.4 2024-04-16 Savedata version requested on save: 3
EA-Sports FC PC-V v1.9.4 2024-04-16 Savedata version requested: 3
EA-Sports FC PC-V v1.17.1 2024-04-15 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
PES FL 2022 v1.13.2 2024-04-12 Unknown GetPointerWrite 00000000 PC 08816130 LR 08816144
B-Boy™ v1.13.2 2024-04-12 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0983a800, 4, 00000000, 0)
B-Boy™ v1.13.2 2024-04-12 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0983a800, 4, 00000000, 0)
eFootball Chelito 19 v1.13.2 2024-04-12 Branch in Jump delay slot at 08b8a81c in block starting at 08b8a808
TEKKEN 6 v1.13.2 2024-04-12 Error in shader program link: info: (unknown reason) fs: 00000000:00a1d022 Tex TexAlpha Fog 2x TFuncMod AlphaTest0 > #version 320 es #extension GL_ARM_shader_framebuffer_fetch : require // Mali-G31 - GLSL 320 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) uniform sampler2D tex; uniform sampler2D testtex; in lowp vec4 v_color0; uniform vec3 u_fogcolor; in mediump float v_fogdepth; in mediump vec3 v_texcoord; out vec4 fragColor0; void main() { vec4 t = texture(tex, v_texcoord.xy); vec4 p = v_color0; vec4 v = p * t; v.rgb = clamp(v.rgb * 2.0, 0.0, 1.0); float fogCoef = clamp(v_fogdepth, 0.0, 1.0); v = mix(vec4(u_fogcolor, v.a), v, fogCoef); if (v.a < 0.002) DISCARD; fragColor0 = v; } vs: 01f00000:00000b3c HWX C T N Fog Tex Light: 0: c:0 t:0 1: c:0 t:0 2: c:0 t:0 3: c:0 t:0 Cull #version 320 es // Mali-G31 - GLSL 320 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) in vec3 position; in mediump vec3 normal; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform vec3 u_lightpos2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform vec3 u_lightpos3; uniform lowp vec3 u_lightambient3; uniform lowp vec3 u_lightdiffuse3; 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 vec2 u_fogcoef; uniform highp vec4 u_depthRange; uniform highp vec4 u_cullRangeMin; uniform highp vec4 u_cullRangeMax; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(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 * u_matambientalpha + vec4(u_matemissive, 0.0); vec3 toLight; lowp vec3 diffuse; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos1; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos2; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse2 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient2 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos3; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse3 * u_matdiffuse) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient3 * u_matambientalpha.rgb + diffuse); v_color0 = clamp(lightSum0, 0.0, 1.0); v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; vec3 projPos = outPos.xyz / outPos.w; float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w; if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y) { outPos.xyzw = u_cullRangeMax.wwww; } } if (u_cullRangeMin.w <= 0.0) { if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; }
Mortal Kombat: Unchained v1.13.2 2024-04-11 __KernelStopThread: thread 1011 does not exist
God of War™: Ghost of Sparta v1.13.2 2024-04-11 Branch in Jump delay slot at 08aedbd0 in block starting at 08aedb8c
God of War™: Ghost of Sparta v1.13.2 2024-04-11 Jump to invalid address: 02ad5aa0 PC 08aedbd0 LR 08aedb8c
God of War™: Ghost of Sparta v1.13.2 2024-04-11 Jump to invalid address: 01000780 PC 08aedbc0 LR 08aedb8c
God of War™: Ghost of Sparta v1.13.2 2024-04-11 MIPSCompileOp: Invalid instruction 7fc00001
God of War™: Ghost of Sparta v1.13.2 2024-04-11 Jump to invalid address: 0779ed00 PC 08aedbb0 LR 08aedb8c
God of War™: Ghost of Sparta v1.13.2 2024-04-11 Jump to invalid address: 01000780 PC 08aedb90 LR 08aedb8c
eFootball Chelito 19 v1.13.2 2024-04-11 Unknown GetPointer 2c5e2f02 PC 0884d5b0 LR 0884d7d4
eFottball Hend Asean v1.13.2 2024-04-11 Unknown GetPointer 00000000 PC 00000000 LR 08a1f430
eFottball Hend Asean v1.13.2 2024-04-11 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08a1f430
eFootball Chelito 19 v1.13.2 2024-04-11 Unknown GetPointer 0000a30d PC 0881c428 LR 0881c438
Gran Turismo® v1.13.2 2024-04-11 sceKernelVolatileMemUnlock(0) FAILED - not locked
Crash™ Tag Team Racing v1.13.2 2024-04-10 80630006=sceAtracSetDataAndGetID(09bb6f80, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-10 80630006=sceAtracSetDataAndGetID(09bbf000, 00014000): invalid RIFF header
EFOOTBALL NEW PATCH SEASON 2024 v1.13.2 2024-04-09 80630006=sceAtracSetDataAndGetID(09a4ec00, 00001000): invalid RIFF header
PES FL 2022 v1.13.2 2024-04-12 Savedata version requested on save: 3
PES FL 2022 v1.17.1 2024-04-14 Savedata version requested: 3
Crash™ Tag Team Racing v1.13.2 2024-04-09 80630006=sceAtracSetDataAndGetID(09b9b140, 00014000): invalid RIFF header
WWE 2K20 By Lucha Games v1.13.2 2024-04-08 sceDmacMemcpy(dest=04187280, src=09708bd0, size=65552): overlapping read
Crash™ Tag Team Racing v1.13.2 2024-04-08 80630006=sceAtracSetDataAndGetID(09cad700, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-08 80630006=sceAtracSetDataAndGetID(09c91640, 00014000): invalid RIFF header
eFootball PC - V. v1.13.2 2024-04-07 Unknown GetPointer 2985b054 PC 0881c2d8 LR 0881c2e8
Crash™ Tag Team Racing v1.13.2 2024-04-07 80630006=sceAtracSetDataAndGetID(09ba4d00, 00014000): invalid RIFF header
eFooTBall Play Cesar Patch v1.13.2 2024-04-07 Unknown GetPointer 0000a300 PC 0884a918 LR 0884a938
eFootball Chelito 19 v1.13.2 2024-04-07 Unknown GetPointer 00210100 PC 0884a918 LR 0884a938
Crash™ Tag Team Racing v1.13.2 2024-04-06 80630006=sceAtracSetDataAndGetID(09b8ac40, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-06 80630006=sceAtracSetDataAndGetID(09b92c80, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-06 80630006=sceAtracSetDataAndGetID(09ba6d00, 00014000): invalid RIFF header
eFootball Chelito 19 v1.17.1 2024-04-15 Unknown GetPointerWrite 00000000 PC 0885d898 LR 0885d8ac
PES 2013 v1.13.2 2024-04-06 80630007=sceAtracSetData(2, 08d4b180, 00004430): atracID uses different codec type than data
WWE 2K20 By Lucha Games v1.13.2 2024-04-09 Unknown GetPointerWrite 00000000 PC 088d8984 LR 088d898c
モンハン日記 ぽかぽかアイルー村 v1.13.2 2024-04-06 sceKernelLoadModule: unsupported options size=00000014, flags=089fe978, pos=0, access=1, data=1, text=1
CRISIS CORE -FINAL FANTASY VII- v1.13.2 2024-04-06 sceDmacMemcpy(dest=086a3440, src=09d5ea00, size=2048): overlapping read
CRISIS CORE -FINAL FANTASY VII- v1.13.2 2024-04-06 sceDmacMemcpy(dest=09453100, src=084751e0, size=163840): overlapping read
Def Jam® Fight For NY™: The Takeover v1.13.2 2024-04-05 sceDmacMemcpy(dest=0992b540, src=08400000, size=641344): overlapping read
GOD EATER 2 v1.13.2 2024-04-05 80000107=sceDisplaySetFrameBuf(04000000, 512, 1, 0): must change latched framebuf first
GOD EATER 2 v1.13.2 2024-04-05 80000107=sceDisplaySetFrameBuf(04044000, 512, 1, 0): must change latched framebuf first
EA SPORTS FC 24 PPSSPP BY MP v1.9.4 2024-04-16 Savedata version requested: 3
Crash™ Tag Team Racing v1.13.2 2024-04-04 80630006=sceAtracSetDataAndGetID(09ba8000, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-05 80630006=sceAtracSetDataAndGetID(09bd3300, 00014000): invalid RIFF header
NARUTO Shippuden: Legends: Akatsuki Rising v1.13.2 2024-04-03 ReadFromHardware: Invalid address 000003ff near PC 088a6210 LR 088a6210
RENGOKU: The Tower of Purgatory v1.13.2 2024-04-03 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148355080
Class of Heroes v1.13.2 2024-04-03 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148355080
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09d4f3c0, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09705100, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09d5b400, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(097058c0, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09d47380, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09d33300, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09d1f280, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09cfae00, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09d02e40, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-02 80630006=sceAtracSetDataAndGetID(09ce6d80, 00014000): invalid RIFF header
eFootball Chelito 19 v1.13.2 2024-04-02 Unknown GetPointer 2c5e2e82 PC 0884d5b0 LR 0884d7d4
Phantasy Star Portable™ 2 v1.13.2 2024-04-02 WriteToHardware: Invalid address 000008d0 near PC 08c8bfc4 LR 08c8bd74
SOCOM: Fireteam Bravo 3 v1.13.2 2024-04-02 sceGeBreak(mode=0, unknown=08ce050c): unknown ptr (valid)
Dungeon Siege: Throne of Agony v1.13.2 2024-04-02 00000000=sceDisplaySetHoldMode(00000001): unsupported
Crash™ Tag Team Racing v1.13.2 2024-04-01 80630006=sceAtracSetDataAndGetID(09bdf040, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-04-01 80630006=sceAtracSetDataAndGetID(09baef00, 00014000): invalid RIFF header
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD v1.13.2 2024-03-31 __KernelStopThread: thread 339 does not exist
とある魔術の禁書目録 v1.13.2 2024-03-31 ReadFromHardware: Invalid address 0000001c near PC 08924828 LR 089245a8
Crash™ Tag Team Racing v1.13.2 2024-03-31 80630006=sceAtracSetDataAndGetID(09cf99c0, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-03-31 80630006=sceAtracSetDataAndGetID(09d320c0, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-03-30 80630006=sceAtracSetDataAndGetID(094d79c0, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-03-30 80630006=sceAtracSetDataAndGetID(09bd5900, 00014000): invalid RIFF header
Crash™ Tag Team Racing v1.13.2 2024-03-30 80630006=sceAtracSetDataAndGetID(09bc1880, 00014000): invalid RIFF header
Pro Evolution Soccer 2009 v1.13.2 2024-03-29 __KernelStopThread: thread 308 does not exist
Pro Evolution Soccer 2009 v1.13.2 2024-03-29 Failed to read valid video stream data from header
Pro Evolution Soccer 2009 v1.13.2 2024-03-29 Could not setup streams, unexpected stream count: 13464
Pro Evolution Soccer 2009 v1.13.2 2024-03-29 Unexpected mpeg first timestamp: 5579a080000 / 5873804509184
DRAGONBALL: EVOLUTION v1.13.2 2024-03-29 GetFramebufferCandidates(DEPTH): Multiple (3) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16): [C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:040cc000/256 Z:04088000/512 X:0 Y:0 reint: false] [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false]
Lord of Arcana v1.13.2 2024-03-29 __KernelStopThread: thread 397 does not exist
DRAGON BALL BUDOKAI TENKAICHI 4 v1.13.2 2024-03-28 Truncating vertex count from 23049 to 21845
DRAGON BALL BUDOKAI TENKAICHI 4 v1.13.2 2024-03-28 Truncating vertex count from 25851 to 21845
METAL SLUG Complete v1.13.2 2024-03-28 sceKernelRegisterSubIntrHandler(30, 0, 0897c4e4, 09ca9db8): duplicate handler
METAL SLUG Complete v1.13.2 2024-03-28 Unimplemented HLE function Kprintf
METAL SLUG Complete v1.13.2 2024-03-28 sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006
eFootball Play-C v1.13.2 2024-03-27 80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data
Dragon Ball Z: Tenkaichi Tag Team v1.8.0 2024-03-29 80420014=__sceSasCoreWithMix(08b65a00, 2ed47580, 4096, 4096): invalid address
WWE SmackDown vs. RAW 2010 v1.13.2 2024-03-27 sceDmacMemcpy(dest=04144530, src=09518f70, size=65552): overlapping read
MONSTER HUNTER FREEDOM UNITE™ v1.13.2 2024-03-26 sceDmacMemcpy(dest=0414e000, src=09536880, size=257472): overlapping read
Def Jam® Fight For NY™: The Takeover v1.13.2 2024-03-25 sceDmacMemcpy(dest=097819c0, src=08400000, size=14336): overlapping read