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 Play-C |
v1.9.4 |
2026-07-12 |
Unknown GetPointer 2c665602 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.10.3 |
2026-07-12 |
Unknown GetPointer 2985e2f2 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.7.1 |
2026-07-12 |
Unknown GetPointer 2985d403 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.9.4 |
2026-07-10 |
Unknown GetPointer 2c5f4c42 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.11.3 |
2026-07-08 |
Unknown GetPointer 00000000 PC 0884d320 LR 0884d7d4 |
| eFootball Play-C |
v1.17.1 |
2026-07-08 |
ReadFromHardware: Invalid address ffe00000 near PC ffe00000 LR 08a3ae4c |
| eFootball Play-C |
v1.20.4 |
2026-07-08 |
Error in shader compilation: info: 0:119: L0001: Expected token '(', found 'end of file'
0:119: L0001: Expected token '}', found 'end of file'
01000000:80000b20 HWX T N Light: LightUberShader Cull
#version 320 es
// Driver: Mali-T820 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000b20 HWX T N Light: LightUberShader Cull
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 uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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;
uniform highp vec4 u_depthRange;
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;
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(normal, 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;
vec3 diffuseColor = u_matdiffuse.rgb;
vec3 specularColor = u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
float distSq;
float invDist;
lowp float lightScale;
mediump float ldot;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
float distSq = dot(toLight, toLight);
float invDist = inversesqrt(distSq);
distance = distSq * invDist;
toLight *= invDist;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distSq)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
vec3 halfVec = toLight + vec3(0.0, 0.0, 1.0);
float halfInvLen = inversesqrt(dot(halfVec, halfVec));
ldot = pow(max(dot(halfVec, worldnormal) * halfInvLen, 0.0), u_matspecular.a);
} else {
|
| eFootball Play-C |
v1.15.4 |
2026-06-26 |
80630007=sceAtracSetData(2, 08d4b180, 00019800): atracID uses different codec type than data |
| eFootball Play-C |
v1.18.1 |
2026-06-18 |
Unknown GetPointer 0053433e PC 0884a918 LR 0884a938 |
| eFootball Play-C |
v1.18.1 |
2026-06-16 |
Unknown GetPointer deadfd2f PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-06-05 |
Unknown GetPointer 298572e7 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-06-04 |
Unknown GetPointer 29866b61 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.7.1 |
2026-06-28 |
Unknown GetPointer 29860294 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-05-30 |
Unknown GetPointer 29857d23 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.20.4 |
2026-05-29 |
Branch in JumpReg delay slot at 08e82008 in block starting at 08e7f298 |
| eFootball Play-C |
v1.9.4 |
2026-05-29 |
Unknown GetPointer 00a7a8ab PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.16.6 |
2026-05-29 |
Unknown GetPointer 29867223 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.11.3 |
2026-05-29 |
Unknown GetPointer 2985b5c5 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-05-23 |
Unknown GetPointer 2985b1a0 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.20.3 |
2026-05-22 |
PerformMemorySet with invalid range: 0415b580, size -32 |
| eFootball Play-C |
v1.18.1 |
2026-05-16 |
ReadFromHardware: Invalid address 13980558 near PC 08849a4c LR 08849a58 |
| eFootball Play-C |
v1.16.6 |
2026-05-12 |
Unknown GetPointer 29857ca4 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.17.1 |
2026-05-06 |
Unknown GetPointer 2c6635c2 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.16.6 |
2026-05-05 |
Unknown GetPointer 2985f6b4 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-04-28 |
Unknown GetPointer 29867245 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.6.2 |
2026-04-26 |
Error in shader program link: info: Link Error: Vertex shader is missing.
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 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: 00000000:0000001c C Fog Tex
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform highp vec2 u_fogcoef;
out lowp vec4 v_color0;
out highp vec3 v_texcoord;
out highp float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = position.w;
gl_Position = u_proj * vec4(position.xyz, 1.0);
}
|
| eFootball Play-C |
v1.16.6 |
2026-04-25 |
Unknown GetPointer 29865da2 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-05-13 |
Unknown GetPointer 298669e4 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-04-19 |
Unknown GetPointer 29858c9d PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-04-19 |
Unknown GetPointer 2985b711 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.16.6 |
2026-04-18 |
Unknown GetPointer 2985b7e3 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.12.3 |
2026-04-14 |
__KernelStopThread: thread 360 does not exist |
| eFootball Play-C |
v1.12.3 |
2026-04-10 |
Unknown GetPointer 2985b014 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.12.3 |
2026-04-08 |
80630006=sceAtracSetDataAndGetID(08c0ac40, 00020000): invalid RIFF header |
| eFootball Play-C |
v1.20.3 |
2026-03-19 |
PerformMemorySet with invalid range: 041a2980, size 164938928 |
| eFootball Play-C |
v1.17.1 |
2026-03-18 |
MIPSCompileOp: Invalid instruction 00000075 |
| eFootball Play-C |
v1.7.1 |
2026-03-13 |
Savedata version requested: 3
--NATIVE-DATA-BO]NDARY-32bf5b926b95064b-0
Content-Disposition: form-data; name="verify"
Content-Length: 59
Content-Transfer-Encoding: binary
Savedata version requested: %dSavedata version requested: 3 |
| eFootball Play-C |
v1.15.4 |
2026-03-03 |
__KernelStopThread: thread 335 does not exist (helper deleted) |
| eFootball Play-C |
v1.8.0 |
2026-03-01 |
Unknown GetPointer 29857296 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.6.3 |
2026-02-23 |
Unknown GetPointer ef62ea18 PC 0884d320 LR 0884d7d4 |
| eFootball Play-C |
v1.11.3 |
2026-02-22 |
Unknown GetPointer 394ab49c PC 0888d3fc LR 0888d40c |
| eFootball Play-C |
v1.9.4 |
2026-02-22 |
Unknown GetPointer 2986582d PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.11.3 |
2026-02-16 |
sceGeBreak(mode=0, unknown=08dfeda8): unknown ptr (valid) |
| eFootball Play-C |
v1.7.1 |
2026-02-14 |
Unknown GetPointer 29857464 PC 0881c2d8 LR 0881c2e8 |
| eFootball Play-C |
v1.11.3 |
2026-02-14 |
ReadFromHardware: Invalid address 2310a000 near PC 08863d90 LR 08849a58 |
| eFootball Play-C |
v1.13.1 |
2026-02-09 |
__KernelStopThread: thread 308 does not exist |
| eFootball Play-C |
v1.10.3 |
2026-02-08 |
Unknown GetPointer 2c68e582 PC 0884d7b4 LR 0884d7d4 |
| eFootball Play-C |
v1.11.3 |
2026-02-05 |
ReadFromHardware: Invalid address 22fd3000 near PC 08863d90 LR 08849a58 |
| eFootball Play-C |
v1.8.0 |
2026-05-01 |
An uneaten prefix at end of block: 08a19a68 |
| eFootball Play-C |
v1.9.4 |
2026-02-04 |
ReadFromHardware: Invalid address f150a638 near PC f150a638 LR 08000018 |
| eFootball Play-C |
v1.9.4 |
2026-02-03 |
Unknown GetPointer 2c5c7082 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.18.1 |
2026-01-29 |
Unknown GetPointer 00651600 PC 0884a918 LR 0884a938 |
| eFootball Play-C |
v1.14.2 |
2026-01-29 |
UI scissor out of bounds in GameSettingsScreen: 420,0-1780,1080 / 2076,1080 |
| eFootball Play-C |
v1.9.4 |
2026-01-26 |
Unknown GetPointer 0000169b PC 08872bb4 LR 08872c1c |
| eFootball Play-C |
v1.8.0 |
2026-01-21 |
Unknown GetPointer 2c6621c2 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.10.3 |
2026-01-19 |
Unknown GetPointer 2c5af142 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.9.4 |
2026-01-17 |
Unknown GetPointer 2c5afdc2 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.8.0 |
2026-01-10 |
MIPSCompileOp: Invalid instruction 4251d1b4 |
| eFootball Play-C |
v1.16.5 |
2025-12-31 |
Unknown GetPointer 00ff9400 PC 0884a918 LR 0884a938 |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction ef12f70c |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction b18ce318 |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction b6aaffff |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction ef12ef12 |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction ef12f37b |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction ef5af70c |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction ef12ef5a |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction b623b623 |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction ef12b623 |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MIPSCompileOp: Invalid instruction b18cffff |
| eFootball Play-C |
v1.11.3 |
2025-12-28 |
MFIC instruction hit (716793e4) at 08000020 |
| eFootball Play-C |
v1.8.0 |
2025-12-25 |
ReadFromHardware: Invalid address ed447dd0 near PC ed447dd0 LR 08000018 |
| eFootball Play-C |
v1.9.4 |
2025-12-24 |
ReadFromHardware: Invalid address acf179fb near PC acf179fb LR 08000018 |
| eFootball Play-C |
v1.6.3 |
2025-12-24 |
Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program
fs: 00000000:00200022 Tex TexAlpha Fog TFuncMod
#version 100
precision lowp float;
uniform sampler2D tex;
varying vec4 v_color0;
uniform vec3 u_fogcolor;
varying mediump float v_fogdepth;
varying mediump vec3 v_texcoord;
void main() {
vec4 t = texture2D(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);
gl_FragColor = v;
}
vs: 00000000:0000091c HWX C T Fog Tex
#version 100
precision highp float;
attribute vec3 position;
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;
uniform highp vec2 u_fogcoef;
varying lowp vec4 v_color0;
varying mediump vec3 v_texcoord;
varying 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 Play-C |
v1.8.0 |
2025-12-19 |
ReadFromHardware: Invalid address f102add0 near PC f102add0 LR 08000018 |
| eFootball Play-C |
v1.10.3 |
2025-12-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
| eFootball Play-C |
v1.7.1 |
2025-12-15 |
Unknown GetPointer 2c662fc2 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.9.4 |
2025-12-16 |
807f00fd=sceMp3Init(00000000): invalid bitrate v1 l0 rate 0007 |
| eFootball Play-C |
v1.6.3 |
2025-12-13 |
Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program
fs: 00000000:0021d002 Tex Fog TFuncMod AlphaTest0 >
#version 100
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
uniform vec3 u_fogcolor;
varying mediump float v_fogdepth;
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);
if (v.a < 0.002) discard;
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
gl_FragColor = v;
}
vs: 00000000:0000091c HWX C T Fog Tex
#version 100
precision highp float;
attribute vec3 position;
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;
uniform highp vec2 u_fogcoef;
varying lowp vec4 v_color0;
varying mediump vec3 v_texcoord;
varying 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 Play-C |
v1.18.1 |
2025-12-07 |
Unknown GetPointer 00260000 PC 0884a918 LR 0884a938 |
| eFootball Play-C |
v1.18.1 |
2025-11-29 |
Unknown GetPointer 008d8643 PC 0884a918 LR 0884a938 |
| eFootball Play-C |
v1.15.3 |
2025-11-28 |
80630006=sceAtracSetHalfwayBufferAndGetID(08dda4c0, 00000800, 00040000): invalid RIFF header |
| eFootball Play-C |
v1.10.3 |
2025-11-23 |
80020001=sceKernelCreateSema(): invalid name |
| eFootball Play-C |
v1.10.3 |
2025-11-23 |
Unexpected mpeg first timestamp: d59a080000 / 917412249600 |
| eFootball Play-C |
v1.9.4 |
2025-11-22 |
Savedata version requested: 3
--NATIVE-DATA-BOUNDARY-28caecbd71767ci5-2
Content-Disposition: form-data; name="verify"
Content-Length: 59
Content-Transfer-Encoding: binary
Savedata version requested: %dSavedata version requested: 3 |
| eFootball Play-C |
v1.11.3 |
2025-11-22 |
Savelata version requested on save: 3
--NATIVE-DATA-BOUNDARY-263616<a09ab3b54-11
Content-Disposition: form-data; name="verify"
Content-Length: 75
Content-Transfer-Encoding: binary
Savedata version requested on save: %dSavedata version requested on save: 3 |
| eFootball Play-C |
v1.11.3 |
2025-11-18 |
Unknown GetPointer 00000000 PC 08816084 LR 08816098 |
| eFootball Play-C |
v1.10.3 |
2025-11-14 |
MIPSCompileOp: Invalid instruction 00002905 |
| eFootball Play-C |
v1.10.3 |
2025-11-14 |
MIPSCompileOp: Invalid instruction 0000317b |
| eFootball Play-C |
v1.10.3 |
2025-11-14 |
MIPSCompileOp: Invalid instruction 000000b9 |
| eFootball Play-C |
v1.10.3 |
2025-11-14 |
MIPSCompileOp: Invalid instruction 000002a9 |
| eFootball Play-C |
v1.18.1 |
2025-11-11 |
Unknown GetPointer 00000000 PC 08a5cc7c LR 08a5cc90 |
| eFootball Play-C |
v1.9.4 |
2025-11-10 |
MIPSCompileOp: Invalid instruction 000096fc |
| eFootball Play-C |
v1.9.4 |
2025-11-10 |
80420014=__sceSasCore(08bb3ac0, 3009b980): invalid address |
| eFootball Play-C |
v1.9.4 |
2025-11-10 |
MIPSCompileOp: Invalid instruction 0000e18e |
| eFootball Play-C |
v1.11.3 |
2025-11-09 |
Jump to invalid address: 0bbd3670 |
| eFootball Play-C |
v1.11.3 |
2025-11-09 |
Jump to invalid address: 070d3360 |
| eFootball Play-C |
v1.11.3 |
2025-11-09 |
Jump to invalid address: 0bbd3570 |
| eFootball Play-C |
v1.11.3 |
2025-11-09 |
MIPSCompileOp: Invalid instruction 71efc2ac |
| eFootball Play-C |
v1.11.3 |
2025-11-08 |
Unknown GetPointer 2c6622c2 PC 0884d5b0 LR 0884d7d4 |
| eFootball Play-C |
v1.15.4 |
2025-11-05 |
Unknown GetPointer c3399000 PC 0884a918 LR 0884a938 |