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 PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 0000079f |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 00000f15 |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 0000068e |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 000009f8 |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 000004bd |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 0000001f |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 00ff00ff |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 7fff7fff |
| eFootball PC - V. |
v1.8.0 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 0000eeff |
| eFootball PC - V. |
v1.9.4 |
2026-05-05 |
Unknown GetPointer 752f0002 PC 0884d7b4 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2026-05-02 |
ReadFromHardware: Invalid address de244770 near PC de244770 LR 08000018 |
| eFootball PC - V. |
v1.9.4 |
2026-05-01 |
Unknown GetPointer 10b50937 PC 0884d7b4 LR 0884d7d4 |
| eFootball PC - V. |
v1.11.3 |
2026-04-17 |
Unknown GetPointer 00000000 PC 08863d88 LR 08849a58 |
| eFootball PC - V. |
v1.11.3 |
2026-04-17 |
Unknown GetPointer 10bee277 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.11.2 |
2026-04-17 |
MIPSCompileOp: Invalid instruction 71e24574 |
| eFootball PC - V. |
v1.9.4 |
2026-04-12 |
ReadFromHardware: Invalid address 17c39c00 near PC 17c39c00 LR 08000018 |
| eFootball PC - V. |
v1.9.4 |
2026-04-11 |
Unknown GetPointer 10b3b737 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2026-04-11 |
Failed to truncate file. |
| eFootball PC - V. |
v1.10.3 |
2026-04-04 |
MIPSCompileOp: Invalid instruction 0000003e |
| eFootball PC - V. |
v1.6.3 |
2026-04-03 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00004000:00200022 Tex TexAlpha Fog Flat TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
flat 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: 40000000:00000914 HWX T Fog Tex Flat
#version 300 es
precision highp float;
in vec3 position;
in vec2 texcoord;
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;
flat 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 = u_matambientalpha;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
}
|
| eFootball PC - V. |
v1.6.3 |
2026-04-03 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00000000:0021d002 Tex 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 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 = vec4(t.rgb * p.rgb, p.a);
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: 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 PC - V. |
v1.11.2 |
2026-03-25 |
Unknown GetPointer f1374471 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.17.1 |
2026-03-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
| eFootball PC - V. |
v1.6.3 |
2026-03-12 |
Error in shader program link: info:
fs: 00004000:00200022 Tex TexAlpha Fog Flat TFuncMod
#version 300 es
precision lowp float;
uniform sampler2D tex;
flat in 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);
fragColor0 = v;
}
vs: 40000000:00000914 HWX T Fog Tex Flat
#version 300 es
precision highp float;
in vec3 position;
in vec2 texcoord;
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;
flat 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 = u_matambientalpha;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
}
|
| eFootball PC - V. |
v1.10.3 |
2026-03-07 |
Unknown GetPointer 10b3d4b7 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Branch in Jump delay slot at 08b8afa8 in block starting at 08b8ad0c |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 026049a0 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 0269b670 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 0264e7b0 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2be70 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2dca0 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2b6b0 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2a0a0 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
MIPSCompileOp: Invalid instruction 00002a1f |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
MIPSCompileOp: Invalid instruction 00130601 |
| eFootball PC - V. |
v1.11.3 |
2026-03-06 |
Unknown GetPointer 00000000 PC 08811368 LR 088113dc |
| eFootball PC - V. |
v1.17.1 |
2026-03-02 |
__KernelStopThread: thread 611 does not exist (ApctlThread deleted) |
| eFootball PC - V. |
v1.11.3 |
2026-02-20 |
80630007=sceAtracSetData(2, 08d13140, 00000aec): atracID uses different codec type than data |
| eFootball PC - V. |
v1.18.1 |
2026-04-13 |
Unknown GetPointer 10bedb37 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
MIPSCompileOp: Invalid instruction 43494500 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 04ef6ca0 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 01e05c00 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 0176aa00 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Branch in Jump delay slot at 08af1cd4 in block starting at 08af1c94 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 016eb300 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
MIPSCompileOp: Invalid instruction 041dfc80 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 01deec00 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 01765900 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Branch in Jump delay slot at 08af1cb0 in block starting at 08af1c94 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 016db200 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
MIPSCompileOp: Invalid instruction 041dd000 |
| eFootball PC - V. |
v1.11.3 |
2026-02-17 |
Jump to invalid address: 01dd7c00 |
| eFootball PC - V. |
v1.9.4 |
2026-02-16 |
Unknown GetPointer 10b46ef7 PC 0884d7b4 LR 0884d7d4 |
| eFootball PC - V. |
v1.14.4 |
2026-02-15 |
sceDmacMemcpy(dest=04154000, src=0927e200, size=557056): overlapping read |
| eFootball PC - V. |
v1.9.4 |
2026-02-12 |
Unknown GetPointer 10bedff7 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e26fd0 |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
Branch in Jump delay slot at 08b8af28 in block starting at 08b8ad0c |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
Branch in Jump delay slot at 08b8af24 in block starting at 08b8ad0c |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2a1b0 |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
Branch in Jump delay slot at 08b8af20 in block starting at 08b8ad0c |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e29a90 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2bd00 |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
Branch in Jump delay slot at 08b8aef4 in block starting at 08b8ad0c |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2ba20 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 0267ab90 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 02e2bb90 |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
Branch in Jump delay slot at 08b8ae98 in block starting at 08b8ad0c |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 026a3160 |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
Jump to invalid address: 02e2ce40 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
MIPSCompileOp: Invalid instruction 0000ffff |
| eFootball PC - V. |
v1.15.4 |
2026-01-31 |
MIPSCompileOp: Invalid instruction 000f0801 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 026c2d00 |
| eFootball PC - V. |
v1.9.4 |
2026-03-06 |
Jump to invalid address: 0264e5d0 |
| eFootball PC - V. |
v1.9.4 |
2026-01-28 |
Unknown GetPointer 10bedef7 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.11.3 |
2026-01-26 |
Jump to invalid address: 07426f40 |
| eFootball PC - V. |
v1.9.4 |
2026-01-13 |
ReadFromHardware: Invalid address f1c67380 near PC f1c67380 LR 08000018 |
| eFootball PC - V. |
v1.7.1 |
2026-01-09 |
ReadFromHardware: Invalid address df5e7e60 near PC df5e7e60 LR 08000018 |
| eFootball PC - V. |
v1.11.3 |
2026-04-10 |
Unknown GetPointer 10bedd77 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2026-01-02 |
Unknown GetPointer 10bf6377 PC 0884d7b4 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2026-01-23 |
Unknown GetPointer 10bee2b7 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.10.3 |
2025-12-31 |
Unknown GetPointer 10b382f7 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.7.5 |
2025-12-24 |
sceKernelSetCompiledSdkVersion606 unknown SDK: 21 (would crash) |
| eFootball PC - V. |
v1.15.4 |
2025-12-24 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (00000000), bad data |
| eFootball PC - V. |
v1.11.3 |
2025-12-20 |
Branch in Jump delay slot at 04080404 in block starting at 04080400 |
| eFootball PC - V. |
v1.11.3 |
2025-12-20 |
Branch in Jump delay slot at 04080400 in block starting at 04080400 |
| eFootball PC - V. |
v1.11.3 |
2025-12-20 |
Jump to invalid address: 04942498 |
| eFootball PC - V. |
v1.11.3 |
2025-12-20 |
MIPSCompileOp: Invalid instruction 000001ff |
| eFootball PC - V. |
v1.6.3 |
2025-12-17 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00004000:00000000 Flat
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
flat in vec4 v_color0;
inout vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
fragColor0 = v;
}
vs: 40000000:00000002 THR Flat
#version 300 es
precision highp float;
in vec4 position;
in lowp vec4 color0;
uniform mat4 u_proj_through;
flat out lowp vec4 v_color0;
void main() {
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
| eFootball PC - V. |
v1.12.3 |
2025-12-15 |
80630007=sceAtracSetData(2, 08d4b180, 00005000): atracID uses different codec type than data |
| eFootball PC - V. |
v1.12.3 |
2025-12-15 |
80630007=sceAtracSetData(2, 08d4b180, 0000d800): atracID uses different codec type than data |
| eFootball PC - V. |
v1.12.3 |
2025-12-15 |
80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data |
| eFootball PC - V. |
v1.11.3 |
2025-12-15 |
WriteToHardware: Invalid address 000006f4 near PC 080e52e4 LR 08000020 |
| eFootball PC - V. |
v1.11.3 |
2025-12-15 |
MIPSCompileOp: Invalid instruction efefefef |
| eFootball PC - V. |
v1.10.3 |
2025-12-13 |
Unknown GetPointer 10b644b7 PC 0884d5b0 LR 0884d7d4 |
| eFootball PC - V. |
v1.9.4 |
2025-12-11 |
Jump to invalid address: 073ff780 |
| eFootball PC - V. |
v1.9.4 |
2025-12-11 |
Jump to invalid address: 073ff840 |
| eFootball PC - V. |
v1.9.4 |
2025-12-11 |
MIPSCompileOp: Invalid instruction 46520000 |
| eFootball PC - V. |
v1.9.4 |
2025-12-11 |
ReadFromHardware: Invalid address 0a004fe5 near PC 09ce82a8 LR 0887bb3c |
| eFootball PC - V. |
v1.9.4 |
2025-12-11 |
MIPSCompileOp: Invalid instruction 4657cd00 |
| eFootball PC - V. |
v1.9.4 |
2025-12-11 |
MIPSCompileOp: Invalid instruction 00000041 |