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 Chelito 19 |
v1.18.1 |
2026-08-12 |
Unknown GetPointer 00140000 PC 0884a918 LR 0884a938 |
| eFootball Chelito 19 |
v1.20.4 |
2026-08-12 |
Branch in RSRTComp delay slot at 080695a4 in block starting at 08069578 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-10 |
Branch in RSRTComp delay slot at 0001004c in block starting at 00010000 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-10 |
Jump to invalid address: 0f180008 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-10 |
Jump to invalid address: 01303194 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-10 |
Jump to invalid address: 07321cc0 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-09 |
Unknown GetPointer 00000000 PC 08856f24 LR 08856f30 |
| eFootball Chelito 19 |
v1.20.4 |
2026-08-08 |
Vulkan error in shader compilation: info: WARNING: 0:4: '#extension' : extension not supported: GL_ARB_conservative_depth
ERROR: 0:45: 'clamp' : no matching overloaded function found
ERROR: 0:45: 'assign' : cannot convert from ' const float' to ' temp lowp 3-component vector of float'
ERROR: 0:45: '' : compilation terminated
ERROR: 3 compilation errors. No code generated.
/ code: #version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_420pack : enable
#extension GL_ARB_conservative_depth : enable
#extension GL_ARB_shader_image_load_store : enable
#define splat3(x) vec3(x)
#define DISCARD discard
precision lowp float;
precision highp int;
// 10180000:0021d002 Tex Fog FragUber TFuncMod AlphaTest0 >
layout (std140, set = 0, binding = 3) uniform baseUBO {
mat4 u_proj;
mat4 u_proj_through;
mat3x4 u_view;
mat3x4 u_world;
mat3x4 u_texmtx;
vec4 u_uvscaleoffset;
vec4 u_depthRange;
vec4 u_matambientalpha;
vec4 u_cullRangeMin;
vec4 u_cullRangeMax;
uint u_spline_counts;
uint u_depal_mask_shift_off_fmt;
uint u_colorWriteMask;
float u_mipBias;
vec2 u_texNoAlphaMul; float pad1; float pad2;
vec3 u_fogcolor; uint u_alphacolorref;
vec3 u_texenv; uint u_alphacolormask;
vec4 u_texclamp;
vec2 u_texclampoff; vec2 u_fogcoef;
vec3 u_blendFixA; float u_stencilReplaceValue;
vec3 u_blendFixB; float u_rotation;
};
layout (set = 0, binding = 0) uniform sampler2D tex;
layout (location = 1) in lowp vec4 v_color0;
layout (location = 3) in highp float v_fogdepth;
layout (location = 0) in highp vec3 v_texcoord;
layout (location = 0, index = 0) out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
t.a = max(t.a, u_texNoAlphaMul.x);
vec4 v = p * t;
v.rgb = clamp(v.rgb * u_texNoAlphaMul.y, 0.0, 1.0);
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
if (v.a < 0.002) DISCARD;
fragColor0 = v;
}
|
| eFootball Chelito 19 |
v1.10.2 |
2026-08-08 |
ReadFromHardware: Invalid address 13981f98 near PC 08849a4c LR 08849a58 |
| eFootball Chelito 19 |
v1.16.6 |
2026-08-07 |
Unknown GetPointer 80d18ad1 PC 0884a918 LR 0884a938 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-07 |
Jump to invalid address: 02e2ec70 |
| eFootball Chelito 19 |
v1.18.1 |
2026-08-03 |
Unknown GetPointer 00734b27 PC 0884a918 LR 0884a938 |
| eFootball Chelito 19 |
v1.11.3 |
2026-08-03 |
80630007=sceAtracSetData(2, 08d13140, 00000aec): atracID uses different codec type than data |
| eFootball Chelito 19 |
v1.20.4 |
2026-08-02 |
PerformMemorySet with invalid range: 041c3f80, size -1107660596 |
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform mat4 WorldViewProj;
uniform vec2 TintSaturation;
attribute vec3 Position;
attribute vec4 Color0;
attribute vec2 TexCoord0;
varying lowp vec4 oColor0; // COLOR0 (0)
varying highp vec2 oTexCoord0; // TEXCOORD0 (1)
void main() {
gl_Position = mul(WorldViewProj, vec4(Position, 1.0));
oColor0 = Color0;
oTexCoord0 = TexCoord0;
}
|
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define DISCARD discard
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
varying lowp vec4 oColor0; // COLOR0
varying highp vec2 oTexCoord0; // TEXCOORD0
void main() {
vec4 col = texture2D(tex, oTexCoord0) * oColor0;
col.rgb = splat3(col.a);
col.rgb *= oColor0.a;
gl_FragColor = col;
}
|
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define DISCARD discard
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
varying lowp vec4 oColor0; // COLOR0
varying highp vec2 oTexCoord0; // TEXCOORD0
void main() {
vec4 col = texture2D(tex, oTexCoord0) * oColor0;
col.rgb *= oColor0.a;
gl_FragColor = col;
}
|
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define DISCARD discard
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
varying lowp vec4 oColor0; // COLOR0
void main() {
vec4 col = oColor0;
col.rgb *= oColor0.a;
gl_FragColor = col;
}
|
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
vec3 rgb2hsv(vec3 c) {
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
float d = q.x - min(q.w, q.y);
float e = 1.0e-10;
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
}
vec3 hsv2rgb(vec3 c) {
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
}
uniform mat4 WorldViewProj;
uniform vec2 TintSaturation;
attribute vec3 Position;
attribute vec4 Color0;
attribute vec2 TexCoord0;
varying lowp vec4 oColor0; // COLOR0 (0)
varying highp vec2 oTexCoord0; // TEXCOORD0 (1)
void main() {
gl_Position = mul(WorldViewProj, vec4(Position, 1.0));
vec3 hsv = rgb2hsv(Color0.xyz);
hsv.x += TintSaturation.x;
hsv.y *= TintSaturation.y;
oColor0 = vec4(hsv2rgb(hsv), Color0.w);
oTexCoord0 = TexCoord0;
}
|
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define DISCARD discard
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
varying lowp vec4 oColor0; // COLOR0
varying highp vec2 oTexCoord0; // TEXCOORD0
void main() {
vec4 col = texture2D(tex, oTexCoord0).zyxw * oColor0;
col.rgb *= oColor0.a;
gl_FragColor = col;
}
|
| eFootball Chelito 19 |
v1.20.4-777-g16a38b090a |
2026-08-02 |
Error in shader compilation: info: Compile failed.
ERROR: 0:1: Syntax error, version 110 not supported
1 compilation errors. No code generated.
thin3d
#version 110
// Driver: - GLSL 110
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
vec3 rgb2hsv(vec3 c) {
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
float d = q.x - min(q.w, q.y);
float e = 1.0e-10;
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
}
vec3 hsv2rgb(vec3 c) {
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
}
uniform mat4 WorldViewProj;
uniform vec2 TintSaturation;
attribute vec3 Position;
attribute vec4 Color0;
attribute vec2 TexCoord0;
varying lowp vec4 oColor0; // COLOR0 (0)
void main() {
gl_Position = mul(WorldViewProj, vec4(Position, 1.0));
vec3 hsv = rgb2hsv(Color0.xyz);
hsv.x += TintSaturation.x;
hsv.y *= TintSaturation.y;
oColor0 = vec4(hsv2rgb(hsv), Color0.w);
}
|
| eFootball Chelito 19 |
v1.8.0 |
2026-08-02 |
Unknown GetPointer 2c5c0102 PC 0884d5b0 LR 0884d7d4 |
| eFootball Chelito 19 |
v1.20.3 |
2026-08-01 |
PerformMemorySet with invalid range: 041d1e00, size -1194414220 |
| eFootball Chelito 19 |
v1.11.3 |
2026-07-31 |
80630006=sceAtracSetDataAndGetID(09a25200, 00004000): could not detect codec |
| eFootball Chelito 19 |
v1.11.3 |
2026-07-29 |
Unknown GetPointer 00000000 PC 0880de30 LR 088258ec |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-29 |
PerformMemorySet with invalid range: 041cc500, size -48 |
| eFootball Chelito 19 |
v1.7.1 |
2026-07-27 |
ReadFromHardware: Invalid address 4d4f544f near PC 4d4f544f LR 4d4f544f |
| eFootball Chelito 19 |
v1.9.4 |
2026-07-26 |
sceKernelRegisterSubIntrHandler(30, 0, 08815f0c, 00000000): duplicate handler |
| eFootball Chelito 19 |
v1.9.4 |
2026-07-26 |
Unknown GetPointer 00000000 PC 08821588 LR 088215a8 |
| eFootball Chelito 19 |
v1.20.4-36-g035101d477 |
2026-07-26 |
PerformMemorySet with invalid range: 041be680, size -16 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-25 |
Unknown GetPointer 00652d2f PC 0884a918 LR 0884a938 |
| eFootball Chelito 19 |
v1.20.3 |
2026-07-24 |
PerformMemorySet with invalid range: 041b8d80, size 165020016 |
| eFootball Chelito 19 |
v1.14.4 |
2026-07-23 |
Unknown GetPointer 0000b2fe PC 0881c428 LR 0881c438 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-22 |
SCE_AVCODEC_ERROR_INVALID_DATA=sceMp3Init(00000001): invalid bitrate v0 l0 rate 0000 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-21 |
Branch in Jump delay slot at 08020200 in block starting at 08012320 |
| eFootball Chelito 19 |
v1.11.3 |
2026-07-21 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151249632 |
| eFootball Chelito 19 |
v1.11.3 |
2026-07-21 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146210816 |
| eFootball Chelito 19 |
v1.11.3 |
2026-07-21 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-21 |
Error in shader program link: info: L0008 The fragment floating-point variable v_color0 does not match the v_color0 variable declared in earlier shader stages.
The qualifier does not match.
fs: 00000000:00000001 Clear
#version 320 es
#extension GL_ARM_shader_framebuffer_fetch : require
// Driver: Mali-T820 - GLSL 320
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000001 Clear
in lowp vec4 v_color0;
in mediump float v_fogdepth;
out vec4 fragColor0;
void main() {
vec4 v = v_color0;
fragColor0 = v;
}
vs: 40000000:00000120 HWX Flat 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))
// 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 Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in AnalogSetupScreen: 0,0-300,797 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in GamePauseScreen: 958,11-534,259 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in GamePauseScreen: 0,11-942,259 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in GamePauseScreen: 265,20-200,834 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in GamePauseScreen: 0,20-255,834 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in GameSettingsScreen: 0,113-295,1274 / 480,854 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in GameSettingsScreen: 210,0-634,480 / 480,854 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in ReportScreen: 165,20-300,834 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in ReportScreen: 0,20-150,829 / 854,480 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in ReportScreen: 539,20-300,460 / 480,854 |
| eFootball Chelito 19 |
v1.14.1 |
2026-07-21 |
UI scissor out of bounds in ReportScreen: 0,20-524,455 / 480,854 |
| eFootball Chelito 19 |
v1.9.4 |
2026-07-20 |
Unknown GetPointer 00000000 PC 088d1a34 LR 08000020 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
WriteToHardware: Invalid address deadbeef near PC 0802a5e0 LR dead3eef |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
Branch in branch delay slot at 0802a654 with different target |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 000009fe |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 7cfeffff |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 70000003 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction effff4fb |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 00bababb |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 00077677 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 75ffffff |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 00045454 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
Branch in branch delay slot at 080295c4 with different target |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 06dd3000 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 06cd5000 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction b0000059 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 48a00000 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 003eeefe |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction eefc0001 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 7fffffb1 |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 01bfffff |
| eFootball Chelito 19 |
v1.16.6 |
2026-07-19 |
MIPSCompileOp: Invalid instruction 00000201 |
| eFootball Chelito 19 |
v1.18 |
2026-07-16 |
Unknown GetPointer 000282ea PC 08a02a0c LR 0884a938 |
| eFootball Chelito 19 |
v1.18 |
2026-07-16 |
Unknown GetPointer 00000020 PC 08a02a0c LR 0884d7d4 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-16 |
SCE_AVCODEC_ERROR_INVALID_DATA=sceMp3Init(00000000): invalid bitrate v2 l0 rate 0000 |
| eFootball Chelito 19 |
v1.9.2 |
2026-07-15 |
80420014=__sceSasCore(08bb3ac0, be667580): invalid address |
| eFootball Chelito 19 |
v1.9.2 |
2026-07-15 |
80420014=__sceSasCore(08bb3ac0, be667180): invalid address |
| eFootball Chelito 19 |
v1.8.0 |
2026-07-15 |
Unknown GetPointer 0000005a PC 08872bb4 LR 08872c1c |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d308b0 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30898 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30840 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30894 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d308ac in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30874 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30870 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d3086c in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d308a8 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d308a4 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d307b0 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30864 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-14 |
Branch in Jump delay slot at 09d30868 in block starting at 09d307b0 |
| eFootball Chelito 19 |
v1.18.1 |
2026-07-14 |
Unknown GetPointer 003a0000 PC 0884a918 LR 0884a938 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-11 |
Branch in branch delay slot at 0802c59c with different target |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-11 |
PerformMemorySet with invalid range: 041adb80, size 166068592 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-11 |
PerformMemorySet with invalid range: 041adb80, size 166068912 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-10 |
SCE_KERNEL_ERROR_SCE_SAS_ERROR_INVALID_PARAMETER=__sceSasCore(08bb3ac0, e4b32980): invalid address |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-10 |
SCE_KERNEL_ERROR_SCE_SAS_ERROR_INVALID_PARAMETER=__sceSasCore(08bb3ac0, e4b32d80): invalid address |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-19 |
PerformMemorySet with invalid range: 041b0800, size -16 |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-09 |
WriteFCR: Unexpected reg 8 (value deadbeef) |
| eFootball Chelito 19 |
v1.20.4 |
2026-07-07 |
PerformMemorySet with invalid range: 041da380, size 165146672 |
| eFootball Chelito 19 |
v1.11.3 |
2026-07-06 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145635464 |