Recent logs - eFootball Chelito 19

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.6.3 2025-10-02 Error in shader program link: info: Link failed because of missing shader. fs: 00000000:0001d002 Tex 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; 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; 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 Chelito 19 v1.19.3 2025-10-01 Error in shader program link: info: Link failed because of missing fragment shader. fs: 10180000:00200002 Tex Fog FragUber TFuncMod vs: 01000000:80000b20 HWX T N Light: LightUberShader Cull #version 320 es // Driver: Mali-G52 - 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; 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; distance = length(toLight); toLight /= distance; attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 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) { ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal); ldot = pow(max(ldot, 0.0), u_matspecular.a); } else { ldot = 1.0; } lightSum1 += u_lightspecular0 * specularColor * ldot * lightScale; } lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
eFootball Chelito 19 v1.19.3 2025-10-01 Error in shader program link: info: Link failed because of missing fragment shader. fs: 10180000:00200002 Tex Fog FragUber TFuncMod vs: 00000000:00000928 HWX C T Cull #version 320 es // Driver: Mali-G52 - GLSL 320 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 00000000:00000928 HWX C T Cull 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; 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(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 = color0; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 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.15.4 2025-10-01 ReadFromHardware: Invalid address f633f56e near PC f633f56e LR 08a3c194
eFootball Chelito 19 v1.11.3 2025-09-30 MIPSCompileOp: Invalid instruction 71eee274
eFootball Chelito 19 v1.17.1 2025-09-28 Unknown GetPointer 004c3738 PC 0884d7b4 LR 0884d7d4
eFootball Chelito 19 v1.10.2 2025-09-28 Unknown GetPointer 2c5b97c2 PC 0884d7b4 LR 0884d7d4
eFootball Chelito 19 v1.11.3 2025-09-26 Unknown GetPointer ba746554 PC 0884d320 LR 0884d7d4
eFootball Chelito 19 v1.5.2 2025-09-26 Error in shader program link: info: Error: input v_color1 not declared in output from previous stage. Error: Linking failed. / fs: #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require precision lowp float; in vec4 v_color0; in vec3 v_color1; inout vec4 fragColor0; void main() { vec4 s = vec4(v_color1, 0.0); vec4 v = v_color0 + s; fragColor0 = v; } / vs: #version 300 es precision highp float; in vec4 position; in lowp vec4 color0; uniform mat4 u_proj; out lowp vec4 v_color0; void main() { v_color0 = color0; gl_Position = u_proj * vec4(position.xyz, 1.0); }
eFootball Chelito 19 v1.9.4 2025-09-25 Jump to invalid address: 070cb260
eFootball Chelito 19 v1.11.3 2025-09-25 MIPSCompileOp: Invalid instruction 0001efff
eFootball Chelito 19 v1.11.3 2025-09-25 Branch in Jump delay slot at 08061644 in block starting at 08061644
eFootball Chelito 19 v1.11.3 2025-09-25 Branch in RSRTComp delay slot at 08061640 in block starting at 08061640
eFootball Chelito 19 v1.6.3 2025-09-24 80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): unsupported sample rate: 67152964
eFootball Chelito 19 v1.7.2 2025-09-23 Jump to invalid address: 02e2ec70
eFootball Chelito 19 v1.11.3 2025-09-20 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148581032
eFootball Chelito 19 v1.18.1 2025-09-20 Unknown GetPointer 2c5bda42 PC 0884d5b0 LR 0884d7d4
eFootball Chelito 19 v1.11.3 2025-09-18 Unknown GetPointer 00000000 PC 00010001 LR 08a3c194
eFootball Chelito 19 v1.14 2025-09-15 UI scissor out of bounds in GameSettingsScreen: 43,0-255,481 / 300,480
eFootball Chelito 19 v1.10.3 2025-09-15 ReadFromHardware: Invalid address f0236e84 near PC f0236e84 LR 08000018
eFootball Chelito 19 v1.6.3 2025-09-12 Error in shader program link: info: Link failed because of missing fragment shader. fs: 00000000:0021d022 Tex TexAlpha 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 = p * t; 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: 01770000:00000b14 HWX T N Fog Tex Light: 0: c:0 t:0 1: c:0 t:0 2: c:0 t:0 MatUp:7 #version 300 es precision highp float; 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 vec3 u_lightpos0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform vec3 u_lightpos2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; 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; 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 = normalize((u_world * vec4(normal, 0.0)).xyz); vec4 viewPos = u_view * vec4(worldpos, 1.0); gl_Position = u_proj * viewPos; lowp vec4 lightSum0 = u_ambient * u_matambientalpha + vec4(u_matemissive, 0.0); vec3 toLight; lowp vec3 diffuse; mediump float ldot; toLight = u_lightpos0; ldot = max(dot(toLight, worldnormal), 0.0); diffuse = (u_lightdiffuse0 * u_matdiffuse) * ldot; lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos1; ldot = max(dot(toLight, worldnormal), 0.0); diffuse = (u_lightdiffuse1 * u_matdiffuse) * ldot; lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse); toLight = u_lightpos2; ldot = max(dot(toLight, worldnormal), 0.0); diffuse = (u_lightdiffuse2 * u_matdiffuse) * ldot; lightSum0.rgb += (u_lightambient2 * u_matambientalpha.rgb + diffuse); v_color0 = clamp(lightSum0, 0.0, 1.0); v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; }
eFootball Chelito 19 v1.17.1-334-g1786a4ddb 2025-09-11 sceGeBreak(mode=0, unknown=08ce050c): unknown ptr (valid)
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0660 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 0727a640
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 073a1d40
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0634 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 MIPSCompileOp: Invalid instruction 0000023f
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07341820
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd051c in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 073417a0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0518 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0514 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 073416a0
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07341620
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0508 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 073415a0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0504 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0500 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 073414a0
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 0630c5a0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0470 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07341080
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd046c in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 0630c680
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0468 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07341400
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 0630c580
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd045c in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 0630c2b0
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07343fc0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0428 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06308c00
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0424 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0420 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07341100
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e58f00
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd03f4 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 073431c0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd03f0 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e56dc0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd03c4 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07340fc0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd03c0 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e56980
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0394 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0390 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e51840
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0364 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07340e40
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0360 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e4f600
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0334 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07340d80
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0330 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e464c0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0304 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07340cc0
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd0300 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e35380
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd02d4 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07340c00
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd02d0 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 06e24240
eFootball Chelito 19 v1.11.3 2025-09-08 Branch in Jump delay slot at 09cd02a4 in block starting at 09cd029c
eFootball Chelito 19 v1.11.3 2025-09-08 Jump to invalid address: 07340b40
eFootball Chelito 19 v1.8.0 2025-09-07 Unknown GetPointer 2c5b9b02 PC 0884d5b0 LR 0884d7d4
eFootball Chelito 19 v1.6.3 2025-09-05 Error in shader program link: info: Link Error: Fragment shader is missing. fs: 00004000:0001d022 Tex TexAlpha Flat TFuncMod AlphaTest0 > #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; uniform sampler2D testtex; flat in vec4 v_color0; 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; if (v.a < 0.002) discard; fragColor0 = v; } vs: 40000000:00000012 THR Tex Flat #version 300 es precision highp float; in vec4 position; in vec2 texcoord; in lowp vec4 color0; uniform mat4 u_proj_through; flat out lowp vec4 v_color0; out highp 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 Chelito 19 v1.9.4 2025-09-04 ReadFromHardware: Invalid address a645b124 near PC a645b124 LR 08000018
eFootball Chelito 19 v1.16.6 2025-09-01 Unknown GetPointer 00140000 PC 0884d5b0 LR 0884d7d4
eFootball Chelito 19 v1.14.1 2025-08-31 UI scissor out of bounds in GameSettingsScreen: 125,0-503,284 / 604,272
eFootball Chelito 19 v1.19.3 2025-08-30 Branch in branch delay slot at 080def14 with different target
eFootball Chelito 19 v1.17.1 2025-08-28 Unknown GetPointer 001a0400 PC 0884d7b4 LR 0884d7d4
eFootball Chelito 19 v1.11.3 2025-08-27 ReadFromHardware: Invalid address 7a9f49e0 near PC 7a9f49e0 LR 08a3c194
eFootball Chelito 19 v1.9.4 2025-08-27 ReadFromHardware: Invalid address b073fc74 near PC b073fc74 LR 08000018
eFootball Chelito 19 v1.18.1 2025-08-26 Jump to invalid address: 07349c40
eFootball Chelito 19 v1.18.1 2025-08-26 Jump to invalid address: 07299140
eFootball Chelito 19 v1.18.1 2025-08-26 Branch in Jump delay slot at 09ca6454 in block starting at 09ca6400
eFootball Chelito 19 v1.18.1 2025-08-26 Jump to invalid address: 07298e80
eFootball Chelito 19 v1.18.1 2025-08-26 Jump to invalid address: 07299200
eFootball Chelito 19 v1.18.1 2025-08-26 Jump to invalid address: 074b6640