Recent logs - v1.6.3-432-gfd6c3145d

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
GTA: Liberty City Stories v1.6.3-432-gfd6c3145d 2026-08-02 Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program fs: 00000000:00000002 Tex TFuncMod #version 100 precision lowp float; uniform sampler2D tex; varying vec4 v_color0; varying mediump vec3 v_texcoord; void main() { vec4 t = texture2D(tex, v_texcoord.xy); vec4 p = v_color0; vec4 v = vec4(t.rgb * p.rgb, p.a); gl_FragColor = v; } vs: 00000000:00000b18 HWX C T N Tex #version 100 precision highp float; 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 vec4 u_uvscaleoffset; uniform lowp vec4 u_matambientalpha; varying lowp vec4 v_color0; varying mediump vec3 v_texcoord; void main() { vec3 worldpos = (u_world * vec4(position.xyz, 1.0)).xyz; mediump vec3 worldnormal = normalize((u_world * vec4(normal, 0.0)).xyz); vec4 viewPos = u_view * vec4(worldpos, 1.0); gl_Position = u_proj * viewPos; v_color0 = color0; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); }
Mortal Kombat: Unchained v1.6.3-432-gfd6c3145d 2026-05-29 Error in shader program link: info: Link Error: Fragment shader is missing. fs: 00000000:0021d022 Tex TexAlpha Fog TFuncMod AlphaTest0 > #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; uniform sampler2D testtex; 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; if (v.a < 0.002) discard; float fogCoef = clamp(v_fogdepth, 0.0, 1.0); v = mix(vec4(u_fogcolor, v.a), v, fogCoef); fragColor0 = v; } vs: 01100000:00000b14 HWX T N Fog Tex Light: 0: c:0 t:0 #version 300 es precision highp float; in vec3 position; in mediump vec3 normal; in vec2 texcoord; 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 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; out lowp vec4 v_color0; out highp vec3 v_texcoord; out highp float v_fogdepth; void main() { vec3 worldpos = (u_world * vec4(position.xyz, 1.0)).xyz; mediump vec3 worldnormal = normalize((u_world * vec4(normal, 0.0)).xyz); vec4 viewPos = u_view * vec4(worldpos, 1.0); gl_Position = 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 = max(dot(toLight, worldnormal), 0.0); diffuse = (u_lightdiffuse0 * u_matdiffuse) * ldot; lightSum0.rgb += (u_lightambient0 * 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; }
eFootball Lop - Play v1.6.3-432-gfd6c3145d 2026-02-07 Error in shader program link: info: Link failed because of missing vertex shader. fs: 00000000:00000002 Tex TFuncMod #version 300 es #extension GL_ARM_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; in vec4 v_color0; 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); fragColor0 = v; } vs: 00000000:0000001a THR C Tex #version 300 es precision highp float; in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; out lowp vec4 v_color0; out mediump vec3 v_texcoord; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; gl_Position = u_proj_through * vec4(position.xyz, 1.0); }
eFootball Lop - Play v1.6.3-432-gfd6c3145d 2026-02-07 Error in shader program link: info: Link failed because of missing vertex shader. fs: 00004000:0001d002 Tex Flat TFuncMod AlphaTest0 > #version 300 es #extension GL_ARM_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; uniform sampler2D testtex; flat in vec4 v_color0; 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); if (v.a < 0.002) discard; fragColor0 = v; } vs: 40000000:00000012 THR Tex Flat #version 300 es precision highp float; in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; gl_Position = u_proj_through * vec4(position.xyz, 1.0); }
eFootball Lop - Play v1.6.3-432-gfd6c3145d 2026-02-07 Error in shader program link: info: Link failed because of missing vertex shader. fs: 00004000:00000002 Tex Flat TFuncMod #version 300 es #extension GL_ARM_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; flat in vec4 v_color0; 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); fragColor0 = v; } vs: 40000000:00000012 THR Tex Flat #version 300 es precision highp float; in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; void main() { v_texcoord = vec3(texcoord, 1.0); v_color0 = color0; gl_Position = u_proj_through * vec4(position.xyz, 1.0); }
EFOOTBALL 26 PPSSPP BY SPARTAN v1.9.4 2026-08-03 Savedata version requested on save: 3
EA-Sports FC PC-V v1.6.3-432-gfd6c3145d 2026-01-27 Error in shader program link: info: (unknown reason) 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 mediump float v_fogdepth; in mediump 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:0000091c HWX C T Fog Tex #version 300 es precision highp float; 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; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; void main() { vec3 worldpos = (u_world * vec4(position.xyz, 1.0)).xyz; mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0); vec4 viewPos = u_view * vec4(worldpos, 1.0); gl_Position = 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; }
eFootball JOELAND v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball JOELAND v1.9.4 2026-08-03 Savedata version requested: 3
eFootball JOELAND v1.9.4 2026-08-03 Savedata version requested on save: 3
eFootball Lop - Play v1.9.4 2026-07-26 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 00000000
eFootball Season 2025/26 By Ardi Css v1.6.3-432-gfd6c3145d 2026-01-03 MIPSCompileOp: Invalid instruction 46800499
EA-Sports FC Lop-Play v1.9.4 2026-07-27 Unknown GetPointer 00000000 PC 08a02a0c LR 08828800
EA v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
EA v1.9.4 2026-08-03 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
EA v1.9.4 2026-08-03 Savedata version requested: 3
EA v1.9.4 2026-08-03 Savedata version requested on save: 3
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-08-03 Savedata version requested: 3
eFootball SAN JOE v1.9.4 2026-08-02 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball SAN JOE v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
Dragon Ball : Sparking Zero v1.8.0 2026-07-30 0 depal unsupported: shift=5 mask=ff offset=0
eFootball SAN JOE v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball SAN JOE v1.9.4 2026-08-02 Savedata version requested on save: 3
eFootball SAN JOE v1.9.4 2026-08-02 Savedata version requested: 3
eFootball Lop - Play v1.9.4 2026-07-25 ReadFromHardware: Invalid address 00000002 near PC 08815fa0 LR 08815f88
eFootball Lop - Play v1.8.0 2026-07-25 WriteToHardware: Invalid address 00000004 near PC 08863d74 LR 088a69f4
eFootball Lop - Play v1.8.0 2026-07-25 ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 088a69f4
eFootball Lop - Play v1.9.4 2026-08-03 MIPSCompileOp: Invalid instruction 46800499
eFootball Season 2025/26 By Ardi Css v1.9.4 2026-07-30 Savedata version requested: 3
eFootball RB - V. v1.9.4 2026-08-03 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball RB - V. v1.9.4 2026-08-03 Savedata version requested: 3
eFootball RB - V. v1.9.4 2026-08-03 Savedata version requested on save: 3
MYFP26 ENGLISH v1.9.4 2026-08-02 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
MYFP26 ENGLISH v1.9.4 2026-07-17 MIPSCompileOp: Invalid instruction 46800499
MYFP26 ENGLISH v1.9.4 2026-08-03 Savedata version requested on save: 3
eFootball Lop - Play v1.9.4 2026-07-26 Unknown GetPointer 00000000 PC 08a02a0c LR 08828800
MYFP26 ENGLISH v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
eFootball Lop - Play v1.9.4 2026-07-25 ReadFromHardware: Invalid address 00000010 near PC 08815204 LR 0881bf88
eFootball Lop - Play v1.9.4 2026-07-25 ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 08849a58
eFootball Lop - Play v1.9.4 2026-07-25 Unknown GetPointer 00000000 PC 08a02a0c LR 0881615c
MYFP26 ENGLISH v1.9.4 2026-08-03 Savedata version requested: 3
EA-Sports FC Lop-Play v1.9.4 2026-08-03 MIPSCompileOp: Invalid instruction 46800499
EA FC 2024 BY FUMA GOONERS v1.9.4 2026-08-03 MIPSCompileOp: Invalid instruction 46800499
eFootball RB - V. v1.9.4 2026-08-02 sceDmacMemcpy(dest=040cc000, src=086ce940, size=1251008): overlapping read
eFootball RB - V. v1.9.4 2026-07-30 GL ran out of GPU memory; switching to low memory mode
eFootball RB - V. v1.9.4 2026-08-03 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball RB - V. v1.9.4 2026-08-03 Savedata version requested: 3
eFootball RB - V. v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball RB - V. v1.9.4 2026-08-03 Savedata version requested on save: 3
eFootball Lop - Play v1.9.4 2026-08-02 GL ran out of GPU memory; switching to low memory mode
EA-Sports FC Lop-Play v1.8.0 2026-07-28 Unknown GetPointer 00000000 PC 08824cf4 LR 088113dc
Dragon Ball : Sparking Zero v1.9.4 2026-08-02 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
Dragon Ball : Sparking Zero v1.9.4 2026-08-02 Render to texture using CLUT with different strides 512 != 64
eFootball Lop - Play v1.9.4 2026-08-03 sceDmacMemcpy(dest=09054040, src=086ce900, size=1251072): overlapping read
EA-Sports FC Lop-Play v1.9.4 2026-08-03 80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16)
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-07-25 80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16)
EA-Sports FC Lop-Play v1.9.4 2026-08-03 sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read
EA-Sports FC Lop-Play v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
EA-Sports FC Lop-Play v1.9.4 2026-08-03 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
EA-Sports FC Lop-Play v1.9.4 2026-08-03 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header
EA-Sports FC Lop-Play v1.9.4 2026-08-03 Savedata version requested: 3
EA-Sports FC Lop-Play v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
EA-Sports FC Lop-Play v1.9.4 2026-08-03 Savedata version requested on save: 3
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-08-02 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball 2026 StaR Patch v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball 2026 StaR Patch v1.9.4 2026-08-02 Savedata version requested on save: 3
eFootball 2026 StaR Patch v1.9.4 2026-08-03 Savedata version requested: 3
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-07-30 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-08-03 Savedata version requested on save: 3
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-08-03 MIPSCompileOp: Invalid instruction 46800499
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2026-08-03 Savedata version requested: 3
eFootball Lop - Play v1.9.4 2026-08-02 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
eFootball Lop - Play v1.9.4 2026-08-03 80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16)
eFootball Lop - Play v1.9.4 2026-08-02 Game install with no files / data
eFootball Lop - Play v1.9.4 2026-08-03 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header
eFootball Lop - Play v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
eFootball Lop - Play v1.9.4 2026-08-03 sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read
eFootball Lop - Play v1.9.4 2026-08-03 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball Lop - Play v1.9.4 2026-08-03 Savedata version requested: 3
eFootball Lop - Play v1.9.4 2026-08-03 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball Lop - Play v1.9.4 2026-08-03 Savedata version requested on save: 3
ロコロコデモ v1.6.3-432-gfd6c3145d 2025-07-13 Unknown syscall in known module 'sceImpose': 0x7084e72c
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015eda2!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ecee!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015eb7c!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ed2a!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ebb8!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ecc6!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ed52!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ec80!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ed7a!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ebfc!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ec74!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ed5a!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ec1c!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ec4c!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ed1e!
TEKKEN 6 v1.6.3-432-gfd6c3145d 2025-07-13 Bad vertex address 0015ec9c!