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 RB - V. |
v1.17.1 |
2025-11-15 |
MIPSCompileOp: Invalid instruction ef700000 |
| eFootball RB - V. |
v1.17.1 |
2025-11-15 |
MIPSCompileOp: Invalid instruction 00001777 |
| eFootball RB - V. |
v1.17.1 |
2025-11-15 |
MIPSCompileOp: Invalid instruction 77af8777 |
| eFootball RB - V. |
v1.17.1 |
2025-11-15 |
MIPSCompileOp: Invalid instruction 4fe10000 |
| eFootball RB - V. |
v1.10.2 |
2025-10-29 |
MIPSCompileOp: Invalid instruction 475f5053 |
| eFootball RB - V. |
v1.10.2 |
2025-10-29 |
MIPSCompileOp: Invalid instruction 63736964 |
| eFootball RB - V. |
v1.10.2 |
2025-10-29 |
Unknown GetPointer 00000000 PC 00000000 LR 00000000 |
| eFootball RB - V. |
v1.6.3 |
2025-10-06 |
Error in shader program link: info: Link Error: Vertex shader is missing.
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 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: 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 highp vec3 v_texcoord;
out highp 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 RB - V. |
v1.11.3 |
2025-09-28 |
Unknown GetPointer 00000000 PC 08a02a0c LR 08828800 |
| eFootball RB - V. |
v1.8.0 |
2025-09-10 |
Failed to truncate file. |
| eFootball RB - V. |
v1.11.3-1679-g195662497 |
2025-09-07 |
Unknown GetPointer 00000000 PC 08824cf4 LR 088113dc |
| eFootball RB - V. |
v1.18.1 |
2025-08-28 |
Unknown GetPointer 00999ba1 PC 0884d7b4 LR 0884d7d4 |
| eFootball RB - V. |
v1.10.3 |
2025-08-28 |
WriteToHardware: Invalid address 00000004 near PC 08863d74 LR 0884c9fc |
| eFootball RB - V. |
v1.10.3 |
2025-08-28 |
ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 0884c9fc |
| eFootball RB - V. |
v1.10.3 |
2025-08-28 |
Unknown GetPointer 00000000 PC 08a02a0c LR 0881615c |
| eFootball RB - V. |
v1.9.4 |
2025-09-04 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
| eFootball RB - V. |
v1.6.3 |
2025-07-26 |
Error in shader program link: info: Link failed because of missing fragment shader.
fs: 00000000:0001d022 Tex TexAlpha TFuncMod AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
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 = p * t;
if (v.a < 0.002) discard;
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 RB - V. |
v1.9.4 |
2025-11-08 |
Unknown GetPointer 00000000 PC 08a1b7b0 LR 08000030 |
| eFootball RB - V. |
v1.6.3 |
2025-12-07 |
Unknown GetPointer 00000000 PC 0884d5b0 LR 0884d7d4 |
| eFootball RB - V. |
v1.6.3 |
2025-07-06 |
Error in shader program link: info: Link Error: Vertex shader is missing.
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 RB - V. |
v1.6.3 |
2025-07-06 |
sceDmacMemcpy(dest=04154000, src=095171c0, size=557056): overlapping read |
| eFootball RB - V. |
v1.6.3 |
2025-09-28 |
GL ran out of GPU memory; switching to low memory mode |
| eFootball RB - V. |
v1.12.3 |
2025-07-01 |
807f00fd=sceMp3Init(00000000): invalid bitrate v2 l0 rate 0000 |
| eFootball RB - V. |
v1.12.3 |
2025-07-01 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l2 rate 000f |
| eFootball RB - V. |
v1.12.3 |
2025-07-01 |
sceMp3Init: invalid data: not layer 3 |
| eFootball RB - V. |
v1.6.3 |
2025-06-30 |
ReadFromHardware: Invalid address 1397f1d8 near PC 08863d90 LR 08849a58 |
| eFootball RB - V. |
v1.18.1 |
2025-06-26 |
Unknown GetPointer 00000020 PC 08815fc8 LR 08815fd4 |
| eFootball RB - V. |
v1.8.0 |
2025-12-19 |
Unknown GetPointer 80020142 PC 08220d4c LR 08220d4c |
| eFootball RB - V. |
v1.8.0 |
2026-01-03 |
sceDmacMemcpy(dest=092ed040, src=086ce940, size=1251008): overlapping read |
| eFootball RB - V. |
v1.6.3 |
2025-06-17 |
Unknown GetPointer 0000006c PC 08872bb4 LR 08872c1c |
| eFootball RB - V. |
v1.10.2 |
2025-06-16 |
RET: Stack empty! |
| eFootball RB - V. |
v1.18.1 |
2025-06-12 |
Unknown GetPointerWrite 00000000 PC 08824cf4 LR 088113dc |
| eFootball RB - V. |
v1.18.1 |
2025-06-11 |
Unknown GetPointerWrite 00000080 PC 0882bbf4 LR 088113dc |
| eFootball RB - V. |
v1.18.1 |
2025-06-07 |
Block transfer invalid: 00000000/0 -> 00000000/0, 1x1x2 (0,0)->(0,0) |
| eFootball RB - V. |
v1.18.1 |
2025-06-06 |
Unknown GetPointer 00000140 PC 08824a58 LR 088113dc |
| eFootball RB - V. |
v1.18.1 |
2025-06-06 |
Unknown GetPointerWrite 00000000 PC 08808448 LR 08808460 |
| eFootball RB - V. |
v1.18.1 |
2025-05-22 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08a1f464 |
| eFootball RB - V. |
v1.8.0 |
2025-12-02 |
sceDmacMemcpy(dest=086ce940, src=040cc000, size=1251008): overlapping read |
| eFootball RB - V. |
v1.9.4 |
2025-11-26 |
Game install with no files / data |
| eFootball RB - V. |
v1.9.4 |
2026-01-03 |
Unknown GetPointer 00000000 PC 08815f0c LR 08000020 |
| eFootball RB - V. |
v1.9.4 |
2026-01-06 |
Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f |
| eFootball RB - V. |
v1.9.4 |
2026-01-06 |
Unimplemented HLE function sceKernelFindModuleByUID |
| eFootball RB - V. |
v1.9.4 |
2026-01-06 |
Unknown syscall in known module 'ThreadManForKernel': 0x809ce29b |
| eFootball RB - V. |
v1.9.4 |
2026-01-06 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
| eFootball RB - V. |
v1.9.3-601-g31f4caeb2 |
2025-09-02 |
Unknown GetPointer 00000080 PC 0882bbf4 LR 088113dc |
| eFootball RB - V. |
v1.9.4 |
2025-10-04 |
sceDmacMemcpy(dest=09054040, src=086ce940, size=1251008): overlapping read |
| eFootball RB - V. |
v1.9.4 |
2025-07-27 |
MIPSCompileOp: Invalid instruction 01010101 |
| eFootball RB - V. |
v1.18.1 |
2025-05-01 |
Unknown GetPointer 00548350 PC 0884a918 LR 0884a938 |
| eFootball RB - V. |
v1.8.0 |
2025-05-22 |
Unknown GetPointer 00000000 PC 08808448 LR 08808460 |
| eFootball RB - V. |
v1.18.1 |
2025-09-21 |
Unknown GetPointerWrite 00000000 PC 0882bbf4 LR 088113dc |
| eFootball RB - V. |
v1.19.3 |
2025-09-13 |
sceNetAdhocMatchingInit(32768) at 08a719b8 |
| eFootball RB - V. |
v1.9.4 |
2025-12-04 |
Unknown GetPointer 00000000 PC 0882bbf4 LR 088113dc |
| eFootball RB - V. |
v1.9.4 |
2026-01-13 |
sceDmacMemcpy(dest=040cc000, src=086ce940, size=1251008): overlapping read |
| eFootball RB - V. |
v1.9.4 |
2026-01-06 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0 |
| eFootball RB - V. |
v1.9.4 |
2026-01-06 |
Unimplemented HLE function sceKernelDcacheWritebackAll |
| eFootball RB - V. |
v1.18.1 |
2025-12-17 |
Unknown GetPointer 00000000 PC 0884a918 LR 0884a938 |
| eFootball RB - V. |
v1.18.1 |
2025-07-04 |
Unknown GetPointer 00000140 PC 08824cf4 LR 088113dc |
| eFootball RB - V. |
v1.18.1-421-gb608257b46 |
2025-09-24 |
Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4 |
| eFootball RB - V. |
v1.18.1 |
2025-04-28 |
Unknown GetPointer 00000020 PC 08815fcc LR 08815fd4 |
| eFootball RB - V. |
v1.18.1 |
2025-04-28 |
Unknown GetPointerWrite 00000000 PC 088287f8 LR 08828800 |
| eFootball RB - V. |
v1.9.4 |
2025-10-27 |
sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read |
| eFootball RB - V. |
v1.18.1-362-g01b4eb41be |
2025-12-08 |
Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800 |
| eFootball RB - V. |
v1.9.4 |
2026-01-08 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
| eFootball RB - V. |
v1.9.4 |
2026-01-16 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball RB - V. |
v1.18.1-421-gb608257b46 |
2025-12-17 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| eFootball RB - V. |
v1.9.4 |
2026-01-16 |
Savedata version requested: 3 |
| eFootball RB - V. |
v1.9.4 |
2026-01-09 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
| eFootball RB - V. |
v1.9.4 |
2026-01-16 |
Savedata version requested on save: 3 |