Recent logs

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
Patapon 3 - DxD Edition v1.0 v1.11.2 2026-04-26 WriteToHardware: Invalid address 0008ddc8 near PC 08ac2fd8 LR 08ac2fc0
Prince of Persia - Revelations v1.20.3 2026-04-26 Branch in Jump delay slot at 08bc7498 in block starting at 08bbb3e4
eFootball Play-C v1.6.2 2026-04-26 Error in shader program link: info: Link Error: Vertex shader is missing. fs: 00000000:00200022 Tex TexAlpha Fog TFuncMod #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; in vec4 v_color0; uniform vec3 u_fogcolor; in highp float v_fogdepth; in highp vec3 v_texcoord; inout vec4 fragColor0; void main() { vec4 t = texture(tex, v_texcoord.xy); vec4 p = v_color0; vec4 v = p * t; float fogCoef = clamp(v_fogdepth, 0.0, 1.0); v = mix(vec4(u_fogcolor, v.a), v, fogCoef); fragColor0 = v; } vs: 00000000:0000001c C Fog Tex #version 300 es precision highp float; in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform highp vec2 u_fogcoef; out lowp vec4 v_color0; out highp vec3 v_texcoord; out highp float v_fogdepth; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; v_fogdepth = position.w; gl_Position = u_proj * vec4(position.xyz, 1.0); }
PES 2014 v1.18.1 2026-04-26 Jump to invalid address: 07604000
PES 2014 v1.18.1 2026-04-26 Jump to invalid address: 07603280
PES 2014 v1.18.1 2026-04-26 Jump to invalid address: 07603940
PES 2014 v1.18.1 2026-04-26 Jump to invalid address: 07602bc0
Tom Clancy's Ghost Recon® Predator v1.20.3 2026-04-26 __KernelStopThread: thread 474 does not exist (helper deleted)
God of War®: Ghost of Sparta v1.10.2 2026-04-26 sceKernelLoadModule: unsupported options size=00000014, flags=09fff5c8, pos=0, access=1, data=2, text=2
NETWORK UTILITY DISC CHINESE Ver. 1.00C v1.20.3 2026-04-26 __KernelStopThread: thread 348 does not exist (ApctlThread stopped)
NETWORK UTILITY DISC CHINESE Ver. 1.00C v1.20.3 2026-04-26 __KernelStopThread: thread 348 does not exist (ApctlThread deleted)
Tom Clancy's Ghost Recon® Predator v1.20.3 2026-04-26 __KernelStopThread: thread 462 does not exist (helper deleted)
eFootball RB - V. v1.9.4 2026-04-26 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148355080
eFootball v1.8.0 2026-04-26 Savedata version requested: 3
eFootball RB - V. v1.11.3 2026-04-26 Error in shader program link: info: Link Error: Fragment shader is missing. fs: thin3d vs: thin3d #version 320 es #if __VERSION__ >= 130 #define attribute in #define varying out #endif attribute vec3 Position; attribute vec4 Color0; attribute vec2 TexCoord0; varying vec4 oColor0; varying vec2 oTexCoord0; uniform mat4 WorldViewProj; void main() { gl_Position = WorldViewProj * vec4(Position, 1.0); oColor0 = Color0; oTexCoord0 = TexCoord0; }
eFootball Lop - Play v1.19.3 2026-04-26 An uneaten prefix at end of block: 088107a0
WWE'12 v1.18.1 2026-04-26 Unknown GetPointer 0d80dba4 PC 08bfbde0 LR 08bfbe04
WWE'12 v1.18.1 2026-04-26 Unknown GetPointerWrite 0d80ff54 PC 08bfbde0 LR 08bfbe04
EA-Sports FC Lop-Play v1.11.3 2026-04-26 MIPSCompileOp: Invalid instruction 00000c5f
EA-Sports FC Lop-Play v1.11.3 2026-04-26 MIPSCompileOp: Invalid instruction 0000eeff
EA-Sports FC Lop-Play v1.11.3 2026-04-26 MIPSCompileOp: Invalid instruction 00ff00ff
EA-Sports FC Lop-Play v1.11.3 2026-04-26 MIPSCompileOp: Invalid instruction 7fff7fff
PES MY 2024 v1.10.1 2026-04-26 Failed to truncate file.
Grand Theft Auto: Vice City Stories v1.9.4 2026-04-26 Jump to invalid address: 051a0014
EA-Sports FC PC-V v1.20.3 2026-04-26 PerformMemorySet with invalid range: 041a2980, size -458277293
Assassin's Creed: Bloodlines™ v1.19.3 2026-04-26 Error in shader compilation: info: 0:5: P0007: Extension directive must occur before any non-preprocessor tokens 0:18: L0002: No matching function for call to 'fwidth' 0:19: L0002: Undeclared variable 'boxSize' 0:20: L0002: Undeclared variable 'boxSize' 0:21: L0002: Undeclared variable 'txOffset' postshader #ifdef GL_ES precision mediump float; #endif #ifdef GL_ES #extension GL_OES_standard_derivatives : enable precision mediump float; precision mediump int; #endif uniform sampler2D sampler0; varying vec2 v_position; uniform vec2 u_texelDelta; // (1.0 / bufferWidth, 1.0 / bufferHeight) uniform vec2 u_pixelDelta; // (1.0 / targetWidth, 1.0 / targetHeight) // Returns pixel sharpened to nearest pixel boundary. vec2 sharpSample(vec4 texSize, vec2 coord) { vec2 boxSize = clamp(fwidth(coord) * texSize.zw, 1e-5, 1.0); coord = coord * texSize.zw - 0.5 * boxSize; vec2 txOffset = smoothstep(vec2(1.0) - boxSize, vec2(1.0), fract(coord)); return (floor(coord) + 0.5 + txOffset) * texSize.xy; } void main() { vec2 sharpPos = sharpSample(vec4(u_texelDelta, 1.0 / u_texelDelta), v_position); vec4 color = texture2D(sampler0, sharpPos); gl_FragColor = color; }
EA-Sports FC Lop-Play v1.11.3 2026-04-26 80630007=sceAtracSetData(2, 08d4b180, 00005000): atracID uses different codec type than data
EA-Sports FC Lop-Play v1.11.3 2026-04-26 80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data
EA-Sports FC Lop-Play v1.11.3 2026-04-26 80630007=sceAtracSetData(2, 08d4b180, 0000fe00): atracID uses different codec type than data
EA-Sports FC Lop-Play v1.11.3 2026-04-26 80630007=sceAtracSetData(2, 08d4b180, 00005b00): atracID uses different codec type than data
EA FC26 By Official Gameplay v1.11.3 2026-04-26 MIPSCompileOp: Invalid instruction 01010101
eFootball Lop - Play v1.10.1 2026-04-26 Unknown GetPointer 10bee837 PC 0884d5b0 LR 0884d7d4
Pro Evolution Soccer 2010 v1.17.1 2026-04-26 __KernelStopThread: thread 372 does not exist (helper deleted)
機動戦士ガンダム ガンダムVS.ガンダムNEXT PLUS v1.12.3-1071-g830420f0c 2026-04-26 sceDmacMemcpy(dest=0413a840, src=092a6000, size=135824): overlapping read
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7146c968
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 Jump to invalid address: 048372a0
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 715d0c58
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 Branch in Jump delay slot at 088d1080 in block starting at 088d106c
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 715d0db0
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 Branch in Jump delay slot at 088cc19c in block starting at 088cc198
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 4542e552
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7148e29c
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 Branch in Jump delay slot at 088cc10c in block starting at 088cc104
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7148ddb8
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7148d85c
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7148d8cc
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 Jump to invalid address: 0503f304
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7148d32c
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 714912cc
eFootball Chelito 19 * BETEGAMING v1.10.2 2026-04-26 MIPSCompileOp: Invalid instruction 7148cdb0
EA-Sports FC Lop-Play v1.9.4 2026-04-26 Jump to invalid address: 0bb45e70
EA-Sports FC Lop-Play v1.9.4 2026-04-26 MIPSCompileOp: Invalid instruction 71e55750
EA-Sports FC Lop-Play v1.9.4 2026-04-26 Jump to invalid address: 0bb45f70
EA-Sports FC Lop-Play v1.9.4 2026-04-26 Jump to invalid address: 07045b60
EA-Sports FC Lop-Play v1.9.4 2026-04-26 Jump to invalid address: 0bb45d70
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-04-26 __KernelStopThread: thread 636 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-04-26 __KernelStopThread: thread 636 does not exist (ApctlThread deleted)
eFootball 2026 By Komo Valeri v1.10.2 2026-04-26 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball 2026 By Komo Valeri v1.10.2 2026-04-26 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
WWE 2K19 by GamerNafZ™ and Finn v1.11.3 2026-04-26 sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c38, pos=0, access=1, data=1, text=1
WWE 2K19 by GamerNafZ™ and Finn v1.11.3 2026-04-26 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 29328
Assassin's Creed: Bloodlines™ v1.11.3 2026-04-26 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09baef74, 4, 00000000, 0)
Assassin's Creed: Bloodlines™ v1.11.3 2026-04-26 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09baef74, 4, 00000000, 0)
eFootball RB - V. v1.10.1 2026-04-26 Branch in RSZeroComp delay slot at 09077000 in block starting at 090714c4
eFootball RB - V. v1.10.1 2026-04-26 Branch in RSZeroComp delay slot at 08f90400 in block starting at 08f878f0
eFootball RB - V. v1.10.1 2026-04-26 Unknown GetPointer 8cb085d9 PC 0888d3fc LR 0888d40c
eFootball RB - V. v1.10.1 2026-04-26 Unknown GetPointer e614c476 PC 0888d3fc LR 0888d40c
EA SPORTS FC26 v1.11.3 2026-04-26 Game install with no files / data
eFootball JOELAND v1.20.3 2026-04-26 PerformMemorySet with invalid range: 041a8280, size -16
デジモンワールド リ:デジタイズ v1.18.1 2026-04-26 sceDmacMemcpy(dest=090c3498, src=090c2e80, size=1560): overlapping read
MONSTER HUNTER FREEDOM UNITE™ v1.15.4 2026-04-26 sceDmacMemcpy(dest=0414e000, src=095a62d0, size=272096): overlapping read
Juiced 2: Hot Import Nights v1.20.3 2026-04-26 __KernelStopThread: thread 1172 does not exist (helper deleted)
デジモンワールド リ:デジタイズ v1.18.1 2026-04-26 sceDmacMemcpy(dest=090dd488, src=090dcd80, size=1800): overlapping read
デジモンワールド リ:デジタイズ v1.18.1 2026-04-26 sceDmacMemcpy(dest=090e1898, src=090e1280, size=1560): overlapping read
新紀幻想スペクトラルソウルズⅡアンリミテッドサイド v1.17.1 2026-04-26 sceDmacMemcpy(dest=093974e0, src=08bebc10, size=8192): overlapping read
ときめきメモリアル Girl's Side Premium 3 v1.17.1 2026-04-26 sceDmacMemcpy(dest=0845e440, src=099f6800, size=34752): overlapping read
.hack//Link v1.20.3 2026-04-26 0=sceUtilityScreenshotInitStart(0933a3b0)
刺客信条 血统 汉化版 PLAY汉化组 v1.11.3 2026-04-26 MIPSCompileOp: Invalid instruction 72840004
Kenka Bancho: Badass Rumble v1.19.3 2026-04-26 0=sceUtilityScreenshotInitStart(092bc8e0)
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-04-26 Invalid replacement op 6a500000 at 0803d8c0
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-04-26 MIPSCompileOp 69a00000 failed
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-04-26 An uneaten prefix at end of block: 0803d988
Killzone™: Liberation v1.18.1 2026-04-26 sceDmacMemcpy(dest=04110000, src=095eaa20, size=2112): overlapping read
遊戯王デュエルモンスターズGX タッグフォース 3 v1.13.2 2026-04-26 __KernelStopThread: thread 430 does not exist
eFootball Chelito 19 v1.17.1-980-gabaea0197b 2026-04-26 MIPSCompileOp: Invalid instruction 705100ff
eFootball Chelito 19 v1.17.1-980-gabaea0197b 2026-04-26 MIPSCompileOp: Invalid instruction 00e02029
eFootball Chelito 19 v1.17.1 2026-04-25 Unknown GetPointer 0000a6a6 PC 0881c428 LR 0881c438
eFootball RB - V. v1.8.0 2026-04-25 Unknown GetPointer 00000009 PC 08872bb4 LR 08872c1c
EA SPORTS FC26 BY Charly v1.20.3 2026-04-26 Savedata version requested: 3
eFootball Edicion Mundial de Clubes By T. Bendezu v1.10 2026-04-25 ReadFromHardware: Invalid address 00000010 near PC 08815204 LR 0881bf88
eFootball Edicion Mundial de Clubes By T. Bendezu v1.10 2026-04-25 WriteToHardware: Invalid address 00000004 near PC 08863d6c LR 08849a58
eFootball Edicion Mundial de Clubes By T. Bendezu v1.10 2026-04-25 ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 08849a58
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e312c0 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e313c0 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e31230 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e312c4 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e313c4 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e312f0 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e311f0 in block starting at 08e21580
ISO BT3 PORTABLE:VICTOR MODDER TTT v1.20.3 2026-04-25 Branch in Jump delay slot at 08e31208 in block starting at 08e21580