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 25 Hend Asean New Season |
v1.19.3 |
2025-08-06 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10184000:00000000 Flat FragUber
vs: 40000000:00000002 THR Flat
#version 320 es
// Driver: PowerVR Rogue GE8320 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 40000000:00000002 THR Flat
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0));
gl_Position = outPos;
}
|
eFootball 25 Hend Asean New Season |
v1.19.3 |
2025-08-06 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10184000:00000000 Flat FragUber
vs: 40000000:0000000a THR C Flat
#version 320 es
// Driver: PowerVR Rogue GE8320 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 40000000:0000000a THR C Flat
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0));
gl_Position = outPos;
}
|
eFootball 25 Hend Asean New Season |
v1.19.3 |
2025-07-27 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10184000:00200000 Fog Flat FragUber
vs: 40000000:00000120 HWX Flat Cull
#version 320 es
// Driver: PowerVR Rogue GE8320 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 40000000:00000120 HWX Flat Cull
in vec3 position;
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_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
vec3 normalizeOr001(vec3 v) {
return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v);
}
void main() {
vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz;
mediump vec3 worldnormal = normalizeOr001(mul(vec4(0.0, 0.0, 1.0, 0.0), u_world).xyz);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
vec4 ambientColor = u_matambientalpha;
v_color0 = u_matambientalpha;
v_texcoord = splat3(0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
eFootball 25 Hend Asean New Season |
v1.19.3 |
2025-07-27 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10184000:00200000 Fog Flat FragUber
vs: 40000000:00000020 Flat Cull
#version 320 es
// Driver: PowerVR Rogue GE8320 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 40000000:00000020 Flat Cull
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 pos = position;
vec4 outPos = pos;
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
eFootball 25 Hend Asean New Season |
v1.10.3 |
2025-07-17 |
sceMp3Init: invalid data: not 44.1kHz |
eFootball 25 Hend Asean New Season |
v1.12.3 |
2025-06-29 |
Unknown GetPointer 00000003 PC 08a019d4 LR 08a019dc |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-27 |
Replacement rowPitch=256, but w=1600 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-27 |
Replacement rowPitch=512, but w=4096 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-26 |
Replacement rowPitch=128, but w=400 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-24 |
Replacement rowPitch=256, but w=3072 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-20 |
Replacement rowPitch=512, but w=1024 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-19 |
Replacement rowPitch=512, but w=2000 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-18 |
Replacement rowPitch=256, but w=512 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-28 |
Replacement rowPitch=256, but w=800 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-24 |
Replacement rowPitch=1024, but w=3416 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-27 |
Replacement rowPitch=256, but w=2000 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-17 |
Replacement rowPitch=512, but w=4000 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-21 |
Replacement rowPitch=512, but w=2048 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-20 |
Replacement rowPitch=512, but w=1400 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-18 |
Replacement rowPitch=1024, but w=5120 (level=0) |
eFootball 25 Hend Asean New Season |
v1.14.4 |
2025-06-20 |
Replacement rowPitch=256, but w=2048 (level=0) |
eFootball 25 Hend Asean New Season |
v1.19.1 |
2025-06-15 |
sceMp3Init: invalid data: not MPEG v1 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-08 |
Unknown GetPointerWrite 00000000 PC 08a02a0c LR 0922dd94 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-08 |
Unknown GetPointer 00000000 PC 08a02a0c LR 0922dd94 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-12 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l3 rate 000f |
eFootball 25 Hend Asean New Season |
v1.17.1-980-gabaea0197b |
2025-06-04 |
ReadFromHardware: Invalid address d8abd431 near PC d8abd431 LR d8abd431 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-04 |
807f00fd=sceMp3Init(00000000): invalid bitrate v0 l1 rate 000f |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 47000000 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 4760000e |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 47a5004a |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 47a1000b |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 07f69b00 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca6cc in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 0233af90 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02333980 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c69f90 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 000001f5 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 023357e0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca6e8 in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c6a020 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c40000 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02334310 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca69c in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
An uneaten prefix at end of block: 089ca740 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 0233be70 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c6a000 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca6c8 in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in JumpReg delay slot at 089ca73c in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02338a50 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c69f70 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02330f10 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca6b4 in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02345ce0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca6c4 in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c6b660 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 089ca6c0 in block starting at 089c1a14 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02c69f60 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Jump to invalid address: 02344640 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ed560 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 05050420 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 77776556 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 01100301 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
An uneaten prefix at end of block: 043e2a0c |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ecce0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ec460 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 7788a9a6 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ed9a0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ec020 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2ca0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041edde0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ed120 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041eb360 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041eae60 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041eb7a0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041eaf20 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2c20 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2d20 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2e20 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 00000014 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2ba0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2960 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
Branch in Jump delay slot at 08815ef4 in block starting at 08815ef4 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ec8a0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041ebbe0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2908 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-06-01 |
MIPSCompileOp: Invalid instruction 041e2da0 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-05-31 |
Unknown GetPointer 0001a54b PC 0881c410 LR 0881c420 |
eFootball 25 Hend Asean New Season |
v1.17.1-980-gabaea0197b |
2025-05-31 |
80420014=__sceSasCore(08bb3a00, 303c40c0): invalid address |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-07-07 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): invalid RIFF header |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-05-30 |
80630006=sceAtracSetDataAndGetID(09a25200, 00003800): invalid RIFF header |
eFootball 25 Hend Asean New Season |
v1.11.3 |
2025-05-30 |
Unknown GetPointer 00000000 PC 08808430 LR 08808448 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-05-08 |
sceDmacMemcpy(dest=086ce8c0, src=040cc000, size=1251136): overlapping read |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-05-03 |
Unknown GetPointerWrite 00000000 PC 08811350 LR 088113c4 |
eFootball 25 Hend Asean New Season |
v1.16.6 |
2025-08-22 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00000800): invalid RIFF header |
eFootball 25 Hend Asean New Season |
v1.12.3 |
2025-04-18 |
ReadFromHardware: Invalid address 1b75b6f0 near PC 0921cf7c LR 0921ba5c |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-04-06 |
ReadFromHardware: Invalid address 00000004 near PC 088575d4 LR 088575dc |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-04-06 |
WriteToHardware: Invalid address 00000004 near PC 088575d4 LR 088575dc |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-04-06 |
ReadFromHardware: Invalid address 00000010 near PC 088575e8 LR 0881c49c |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-04-06 |
Unknown GetPointer 00000000 PC 0881c418 LR 0881c420 |
eFootball 25 Hend Asean New Season |
v1.18.1 |
2025-04-06 |
ReadFromHardware: Invalid address 00000019 near PC 0881a30c LR 0881a30c |