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
eFootball Lop - Play v1.11.3 2026-09-16 Error in shader program link: info: (unknown reason) fs: 00000000:0021d002 Tex Fog TFuncMod AlphaTest0 > #version 320 es #extension GL_EXT_shader_framebuffer_fetch : require // Mali-G57 MC2 - 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 = vec4(t.rgb * p.rgb, p.a); 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: 00000000:0000093c HWX C T Fog Tex Cull #version 320 es // Mali-G57 MC2 - 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 vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; 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; void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; 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; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; }
eFootball Lop - Play v1.11.3 2026-09-16 Error in shader program link: info: (unknown reason) fs: 00000000:0021d022 Tex TexAlpha Fog TFuncMod AlphaTest0 > #version 320 es #extension GL_EXT_shader_framebuffer_fetch : require // Mali-G57 MC2 - 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; 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: 00000000:0000093c HWX C T Fog Tex Cull #version 320 es // Mali-G57 MC2 - 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 vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; 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; void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; 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; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; }
eFootball Lop - Play v1.11.3 2026-09-16 Error in shader program link: info: (unknown reason) fs: 00000000:00200002 Tex Fog TFuncMod #version 320 es #extension GL_EXT_shader_framebuffer_fetch : require // Mali-G57 MC2 - 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; 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 = vec4(t.rgb * p.rgb, p.a); float fogCoef = clamp(v_fogdepth, 0.0, 1.0); v = mix(vec4(u_fogcolor, v.a), v, fogCoef); fragColor0 = v; } vs: 00000000:0000093c HWX C T Fog Tex Cull #version 320 es // Mali-G57 MC2 - 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 vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; uniform highp vec2 u_fogcoef; 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; void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0); vec4 outPos = mul(u_proj, viewPos); v_color0 = color0; 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; if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) { if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) { outPos.xyzw = u_cullRangeMax.wwww; } } gl_Position = outPos; }
WWE SmackDown vs. RAW 2011 v1.11.3 2026-09-16 80630007=sceAtracSetData(3, 08d4b180, 00000fb0): atracID uses different codec type than data
eFootball Lop - Play v1.11.3 2026-09-15 MIPSCompileOp: Invalid instruction 000003b9
EFOOTBALL PES 2027 BETWAY PREMIERSHIP UPDATE BY TTSMODZ v1.8.0 2026-09-16 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball CESAR - PATCH v1.11.3 2026-09-15 Unknown GetPointer 0a099053 PC 0884d5b0 LR 0884d7d4
EA-Sports FC Lop-Play v1.11.3 2026-09-15 FBO created from existing depthbuffer as color, 04088000/04110000 and 04000000/04088000
PES eFOOTBALL 2026 JRplay v1.11.3 2026-09-15 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 088681bc
eFootball 2026 By Komo Valeri v1.11.3 2026-09-15 ReadFromHardware: Invalid address 00000043 near PC 08a41b9c LR 08a47b14
eFootball 2026 By Komo Valeri v1.11.3 2026-09-15 ReadFromHardware: Invalid address 0000006f near PC 08a3fbbc LR 08a44350
efootball Mod By Mzansi Gaming v1.11.3 2026-09-15 Unknown GetPointer 00000000 PC 0881c2c0 LR 0881c2d0
eFootball 2026 By Komo Valeri v1.11.3 2026-09-14 Unknown GetPointer 00000000 PC 08815f0c LR 08000020
eFootball Chelito 19 v1.11.3 2026-09-14 Jump to invalid address: 0bbeec70
eFootball Chelito 19 v1.11.3 2026-09-14 Jump to invalid address: 0bbeeb70
eFootball Chelito 19 v1.11.3 2026-09-14 Jump to invalid address: 070ee860
eFootball Chelito 19 v1.11.3 2026-09-14 Jump to invalid address: 0bbeea70
eFootball Chelito 19 v1.11.3 2026-09-14 MIPSCompileOp: Invalid instruction 71e527ec
eFootball Lop - Play v1.11.3 2026-09-14 Unknown GetPointer 00000000 PC 08a06508 LR 08efb6f0
EA-Sports FC Lop-Play v1.11.3 2026-09-14 Unknown GetPointer 10b3c537 PC 0884d7b4 LR 0884d7d4
eFootball RB - V. v1.11.3 2026-09-14 ReadFromHardware: Invalid address 3216b727 near PC 3216b727 LR 0887ac48
MYFP50 ENGLISH v1.11.3 2026-09-14 Savedata version requested: 3
ドラゴンボール タッグバーサス v1.11.3 2026-09-14 WriteToHardware: Invalid address 00000030 near PC 08901588 LR 08901564
ドラゴンボール タッグバーサス v1.11.3 2026-09-14 ReadFromHardware: Invalid address 00000014 near PC 0890161c LR 08901668
EFOOTBALL PES 2027 BETWAY PREMIERSHIP UPDATE BY TTSMODZ v1.8.0 2026-09-16 Savedata version requested on save: 3
eFootball Lop - Play v1.11.3 2026-09-13 MIPSCompileOp: Invalid instruction 000000fb
efootball Mod By Mzansi Gaming v1.11.3 2026-09-16 Unknown GetPointer 00000000 PC 08815ef4 LR 08000020
EFOOTBALL PES 2027 BETWAY PREMIERSHIP UPDATE BY TTSMODZ v1.9.4 2026-09-16 Savedata version requested: 3
SOCOM: Fireteam Bravo 3 v1.11.3 2026-09-13 sceDmacMemcpy(dest=08e2be00, src=08e3ae00, size=8368): overlapping read
eFootball RB - V. v1.11.3 2026-09-13 ReadFromHardware: Invalid address 0f1f379d near PC 0f1f379d LR 08a3c194
EA-Sports FC Lop-Play v1.11.3 2026-09-12 Unknown GetPointer 10b3eeb7 PC 0884d7b4 LR 0884d7d4
WWE SmackDown vs. RAW 2010 Revamped Edition v1.11.3 2026-09-12 80630007=sceAtracSetData(2, 08bd5600, 00008760): atracID uses different codec type than data
efootball pes 2027 by Ofentse x gaming.com v1.11.3 2026-09-12 Savedata version requested on save: 3
eFootball 2026 By Komo Valeri v1.9.4 2026-09-15 ReadFromHardware: Invalid address 00000000 near PC 08a063b4 LR 08a3fbe4
eFootball 2026 By Komo Valeri v1.11.3 2026-09-11 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08a41cc4
FIFA 10 v1.11.3 2026-09-11 Unknown GetPointer 00000000 PC 08000000 LR 08000000
ウルトラマン Fighting Evolution 0 v1.11.3 2026-09-11 Unknown GetPointer 00000000 PC 0889af64 LR 088e7cc4
We2008Ue Psp Version Akp V7: [Vampire Makeover!] Rice Shower and [Hopp'n♪Happy Heart] Special Week Edition v1.11.3 2026-09-11 Unknown GetPointer 00000000 PC 0882be2c LR 0882be3c
eFootball PC - V. v1.11.3 2026-09-11 MIPSCompileOp: Invalid instruction 00390005
eFootball PC - V. v1.11.3 2026-09-11 MIPSCompileOp: Invalid instruction 002a0005
eFootball PC - V. v1.11.3 2026-09-11 MIPSCompileOp: Invalid instruction 0029fffb
eFootball PC - V. v1.11.3 2026-09-11 Returned from deleted module start/stop func
eFootball 2026 By Komo Valeri v1.11.3 2026-09-10 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): fmt definition too small (16)
EA-Sports FC Lop-Play v1.11.3 2026-09-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147547976
EA-Sports FC Lop-Play v1.11.3 2026-09-10 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 29328
EA-Sports FC Lop-Play v1.11.3 2026-09-10 ReadFromHardware: Invalid address 00014000 near PC 00010000 LR 0887ac48
EA-Sports FC Lop-Play v1.11.3 2026-09-10 sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c68, pos=0, access=1, data=1, text=1
Tomb Raider : Legend v1.11.3 2026-09-10 sceDmacMemcpy(dest=041e3c00, src=09c3ab10, size=5120): overlapping read
Pro Evolution Soccer 2017 v1.11.3 2026-09-11 sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read
eFootball Chelito 19 v1.16.6 2026-09-14 MIPSCompileOp: Invalid instruction 706f2074
eFootball Chelito 19 v1.16.6 2026-09-14 MIPSCompileOp: Invalid instruction 62207473
eFootball Chelito 19 v1.16.6 2026-09-14 MIPSCompileOp: Invalid instruction 756d2067
eFootball Chelito 19 v1.16.6 2026-09-14 MIPSCompileOp: Invalid instruction 6e69746f
eFootball Chelito 19 v1.16.6 2026-09-14 MIPSCompileOp: Invalid instruction 621d8c98
eFootball Chelito 19 v1.16.6 2026-09-14 MIPSCompileOp: Invalid instruction 4e55864d
eFootball Chelito 19 v1.9.4 2026-09-12 Unimplemented HLE function sceKernelDcacheWritebackAll
efootball pes 2027 by Ofentse x gaming.com v1.9.4 2026-09-14 Savedata version requested: 3
eFootball ATG - Play v1.11.3 2026-09-08 Unimplemented HLE function sceKernelDcacheWritebackAll
EA-Sports FC Lop-Play v1.11.3 2026-09-08 Unknown GetPointer 00000000 PC 0886a7e0 LR 0886a7e0
Tomb Raider : Legend v1.11.3 2026-09-08 sceDmacMemcpy(dest=041bd400, src=0935ee20, size=8192): overlapping read
EFOOTBALL NEW PATCH SEASON v1.11.3 2026-09-11 Unknown GetPointer 00000000 PC 08863d6c LR 08856d28
EFOOTBALL 26 PPSSPP BY SPARTAN v1.11.3 2026-09-08 Unknown GetPointer 2985b054 PC 0881c2d8 LR 0881c2e8
Prince of Persia The Forgotten Sands™ v1.11.3 2026-09-08 scePsmfPlayerSetPsmf*: incorrect PSMF magic (00000040), bad data
Prince of Persia The Forgotten Sands™ v1.11.3 2026-09-08 scePsmfPlayerStart(0932f070, 09fff4b0, 0): unable to change video stream to 0
Prince of Persia The Forgotten Sands™ v1.11.3 2026-09-08 scePsmfPlayerSetPsmf*: incorrect PSMF magic (00040000), bad data
We2008Ue Psp Version Akp V7: [Vampire Makeover!] Rice Shower and [Hopp'n♪Happy Heart] Special Week Edition v1.11.3 2026-09-08 Unknown GetPointer 00000000 PC 0880a0a4 LR 0880a0bc
We2008Ue Psp Version Akp V7: [Vampire Makeover!] Rice Shower and [Hopp'n♪Happy Heart] Special Week Edition v1.11.3 2026-09-08 Savedata version requested on save: 3
efootball Mod By Mzansi Gaming v1.11.3 2026-09-13 sceDmacMemcpy(dest=040cc000, src=086ce8c0, size=1251136): overlapping read
EFOOTBALL 26 PPSSPP BY SPARTAN v1.11.3 2026-09-07 Unknown GetPointer 0000005a PC 08872bb4 LR 08872c1c
eFootball Lop - Play v1.11.3 2026-09-07 807f00fd=sceMp3Init(00000000): invalid bitrate v1 l0 rate 0000
eFootball PC - V. v1.11.3 2026-09-07 FBO created from existing depthbuffer as color, 04000000/04128000 and 04178000/04000000
eFootball PC - V. v1.11.3 2026-09-07 sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc6500, pos=0, access=1, data=2, text=2
Tomb Raider : Legend v1.11.3 2026-09-07 sceDmacMemcpy(dest=0419a400, src=0938d490, size=8192): overlapping read
Star Wars®: Battlefront II™ v1.11.3 2026-09-07 80630006=?(): unknown codec type in set context
MONSTER HUNTER PORTABLE 3rd v1.11.3 2026-09-07 80630006=sceAtracSetDataAndGetID(09c75150, 0001fff0): invalid RIFF header
Tomb Raider : Legend v1.11.3 2026-09-07 sceDmacMemcpy(dest=041a7800, src=0966f9d0, size=5120): overlapping read
eFootball Lop - Play v1.11.3 2026-09-07 Unknown GetPointer 10bee7f7 PC 0884d7b4 LR 0884d7d4
efootball Mod By Mzansi Gaming v1.8.0 2026-09-16 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
Tomb Raider : Legend v1.11.3 2026-09-06 sceDmacMemcpy(dest=041b4400, src=09508100, size=9216): overlapping read
Tomb Raider : Legend v1.11.3 2026-09-06 sceDmacMemcpy(dest=041c0c00, src=092f7270, size=9216): overlapping read
eFootball 2026 By Komo Valeri v1.11.3 2026-09-06 Unknown GetPointer 00000000 PC 08a478b4 LR 08a44350
eFootball v1.11.3 2026-09-06 Game install with no files / data
eFootball Chelito 19 v1.11.3 2026-09-06 Branch in RSRTComp delay slot at 00010014 in block starting at 00010000
eFootball Chelito 19 v1.11.3 2026-09-06 Jump to invalid address: 00f93944
eFootball Chelito 19 v1.11.3 2026-09-06 MIPSCompileOp 695d0b0b failed
eFootball Chelito 19 v1.11.3 2026-09-06 MIPSCompileOp: Invalid instruction 48acccdc
eFootball Chelito 19 v1.11.3 2026-09-06 Jump to invalid address: 074e5d80
eFootball Chelito 19 v1.11.3 2026-09-06 Branch in Jump delay slot at 00010000 in block starting at 00010000
eFootball Chelito 19 v1.11.3 2026-09-06 Jump to invalid address: 075241c0
eFootball Chelito 19 v1.11.3 2026-09-06 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 0899e6a8
eFootball Chelito 19 v1.11.3 2026-09-06 MIPSCompileOp: Invalid instruction 0000031f
eFootball Chelito 19 v1.11.3 2026-09-06 MIPSCompileOp: Invalid instruction 00002e69
efootball Mod By Mzansi Gaming v1.9.4 2026-09-16 Savedata version requested on save: 3
"eFootball 2027 By ATGXGAMING PRO v1.11.3 2026-09-06 FBO created from existing depthbuffer as color, 04000000/04128000 and 04178000/04000000
efootball Mod By Mzansi Gaming v1.8.0 2026-09-16 Unknown GetPointer 00000000 PC 08816130 LR 08816144
efootball Mod By Mzansi Gaming v1.9.4 2026-09-16 Savedata version requested: 3
eFootball 2026 By Komo Valeri v1.9.4 2026-09-16 Savedata version requested on save: 3
Game Sepak Bola PPSSPP v1.11.3 2026-09-06 Branch in RSRTComp delay slot at 0001002c in block starting at 00010010
Game Sepak Bola PPSSPP v1.11.3 2026-09-06 Jump to invalid address: 0a2845e4
Game Sepak Bola PPSSPP v1.11.3 2026-09-06 MIPSCompileOp: Invalid instruction 73033a63