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.5.2 2024-04-14 Error in shader program link: info: L0007 Fragment shader uses a varying v_color1 that has not been declared in the vertex shader. / fs: #version 300 es #extension GL_ARM_shader_framebuffer_fetch : require precision lowp float; in vec4 v_color0; in vec3 v_color1; out 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_through; out lowp vec4 v_color0; void main() { v_color0 = color0; gl_Position = u_proj_through * vec4(position.xyz, 1.0); }
eFootball Chelito 19 v1.17.1 2024-04-11 An uneaten prefix at end of block: 08a19a68
eFootball Chelito 19 v1.10.3 2024-04-11 sceDmacMemcpy(dest=040cc000, src=095171c0, size=557056): overlapping read
eFootball Chelito 19 v1.17.1 2024-04-11 WriteToHardware: Invalid address 00e3edc0 near PC 091745d4 LR 091740f8
eFootball Chelito 19 v1.17.1 2024-04-11 Branch in RSRTComp delay slot at 091740f0 in block starting at 091740dc
eFootball Chelito 19 v1.17.1 2024-04-11 MIPSCompileOp: Invalid instruction 00808035
eFootball Chelito 19 v1.17.1 2024-04-11 ReadFromHardware: Invalid address deadc197 near PC 0916e9b8 LR 8214f808
eFootball Chelito 19 v1.17.1 2024-04-11 MIPSCompileOp: Invalid instruction 7ca3000a
eFootball Chelito 19 v1.17.1 2024-04-11 Trying to compile instruction 4091027c that can't be interpreted
eFootball Chelito 19 v1.17.1 2024-04-11 MIPSCompileOp: Invalid instruction b4c1027c
eFootball Chelito 19 v1.17.1 2024-04-11 MIPSCompileOp: Invalid instruction b0e10274
eFootball Chelito 19 v1.17.1 2024-04-11 MIPSCompileOp: Invalid instruction b3430a9e
eFootball Chelito 19 v1.17.1 2024-04-11 Invalid replacement op 6a739823 at 0916c664
eFootball Chelito 19 v1.17.1 2024-04-18 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header
eFootball Chelito 19 v1.11.3 2024-04-08 ReadFromHardware: Invalid address 01000000 near PC 01000000 LR 08a3c34c
eFootball Chelito 19 v1.15.4 2024-03-23 sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2
eFootball Chelito 19 v1.15.4 2024-03-23 sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1
eFootball Chelito 19 v1.15.4 2024-03-23 sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=1, text=1
eFootball Chelito 19 v1.12.3 2024-03-18 __KernelStopThread: thread 338 does not exist
eFootball Chelito 19 v1.11.3 2024-03-17 ReadFromHardware: Invalid address 0a1c5c50 near PC 0886f258 LR 0886f220
eFootball Chelito 19 v1.17.1 2024-03-15 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2
eFootball Chelito 19 v1.4 2024-03-09 sceKernelCreateThread(name=AdhocThread): unsupported options parameter 00001000
eFootball Chelito 19 v1.16.3 2024-03-02 Branch in JumpReg delay slot at 08fca08c in block starting at 08fca044
eFootball Chelito 19 v1.16.3 2024-03-02 MIPSCompileOp: Invalid instruction 00010005
eFootball Chelito 19 v1.16.3 2024-03-02 MIPSCompileOp: Invalid instruction 0101fa01
eFootball Chelito 19 v1.16.3 2024-03-02 MIPSCompileOp: Invalid instruction 00020001
eFootball Chelito 19 v1.11.3 2024-02-17 Unknown GetPointer 2c5b26c2 PC 0884d5b0 LR 0884d7d4
eFootball Chelito 19 v1.13.2 2024-02-03 sceDmacMemcpy(dest=08701400, src=040cc000, size=1043456): overlapping read
eFootball Chelito 19 v1.6.3 2024-01-15 Error in shader program link: info: Link Error: Vertex shader is missing. fs: 00000000:0021d002 Tex 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 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 = 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); fragColor0 = v; } vs: 00000000:0000091c HWX C T Fog Tex #version 300 es precision highp float; 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; 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 = color0; v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0); v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y; }
eFootball Chelito 19 v1.6.3 2024-01-02 Error in shader program link: info: Link failed because of missing vertex shader. fs: 00004000:00000022 Tex TexAlpha Flat TFuncMod #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require precision lowp float; uniform sampler2D tex; flat 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 = p * t; fragColor0 = v; } vs: 40000000:00000910 HWX T 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; flat out lowp vec4 v_color0; out mediump vec3 v_texcoord; 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); }
eFootball Chelito 19 v1.9.4 2024-01-02 Unknown GetPointer 00000000 PC 08a02a0c LR 0881615c
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 0000007f
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 0000003b
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 00000005
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 0000003c
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 00000041
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 00000055
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 0000003f
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 0000003d
eFootball Chelito 19 v1.17.1 2024-04-11 MIPSCompileOp: Invalid instruction 00000014
eFootball Chelito 19 v1.16.6 2023-12-22 MIPSCompileOp: Invalid instruction 000001fc
eFootball Chelito 19 v1.16.6 2023-12-03 Can't draw: No current render step. Step count: 0
eFootball Chelito 19 v1.17.1 2024-04-14 Unknown GetPointer 00000000 PC 0881c428 LR 0881c438
eFootball Chelito 19 v1.9.4 2024-03-24 sceDmacMemcpy(dest=040cc000, src=0948f1b0, size=557056): overlapping read
eFootball Chelito 19 v1.12.3 2023-11-18 MIPSCompileOp: Invalid instruction 06760000
eFootball Chelito 19 v1.12.3 2023-11-18 Unknown GetPointer 00000000 PC 08815fc0 LR 08815fd4
eFootball Chelito 19 v1.14.2 2023-10-26 UI scissor out of bounds in GameSettingsScreen: 0,85-720,1096 / 1280,720
eFootball Chelito 19 v1.14.2 2023-10-26 UI scissor out of bounds in GameSettingsScreen: 280,0-987,720 / 720,1280
eFootball Chelito 19 v1.14.2 2023-10-19 UI scissor out of bounds in GamePauseScreen: 1335,24-361,787 / 1714,810
eFootball Chelito 19 v1.14.2 2023-10-19 UI scissor out of bounds in GamePauseScreen: 66,24-1258,787 / 1714,810
eFootball Chelito 19 v1.6.3 2023-10-18 __KernelStopThread: thread 366 does not exist
eFootball Chelito 19 v1.15.4 2023-10-14 WriteToHardware: Invalid address 002e0052 near PC 0880a4e0 LR 0880b460
eFootball Chelito 19 v1.4 2023-10-09 sceDmacMemcpy(dest=09054040, src=086ce940, size=1251008): overlapping read
eFootball Chelito 19 v1.16.6 2024-02-24 sceDmacMemcpy(dest=04154000, src=0948f1b0, size=557056): overlapping read
eFootball Chelito 19 v1.16.5 2023-10-08 sceDmacMemcpy(dest=040cc000, src=091f61b0, size=557056): overlapping read
eFootball Chelito 19 v1.4 2023-10-08 ReadFromHardware: Invalid address 00000004 near PC 08856d1c LR 08856d28
eFootball Chelito 19 v1.4 2023-10-08 WriteToHardware: Invalid address 00000004 near PC 08856d1c LR 08856d28
eFootball Chelito 19 v1.4 2023-10-04 ReadFromHardware: Invalid address 1397fb98 near PC 08849a4c LR 08849a58
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 62ffffff
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 02080301
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 78ffffff
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 07300980
eFootball Chelito 19 v1.9.4 2023-10-04 An uneaten prefix at end of block: 098829c0
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 06209840
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04070402
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0620b680
eFootball Chelito 19 v1.9.4 2023-10-04 Branch in Jump delay slot at 0884a9f0 in block starting at 0884a7b4
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 00ffffff
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764dd30
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764dbf0
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764dcb0
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04540000
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 045400f0
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 00842f6c
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04540170
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d9c0
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04540080
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764db00
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764da80
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0cfc2f6c
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04d40170
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 00000077
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0cfc2bf8
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 00842bf8
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0cfc2874
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04d400f0
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 00000454
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04d40000
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d8d0
eFootball Chelito 19 v1.9.4 2023-10-04 MIPSCompileOp: Invalid instruction 04d40080
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 00842874
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d850
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d790
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d6a0
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0c7c3280
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d5e0
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0c7c3240
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 0764d540
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 02800000
eFootball Chelito 19 v1.9.4 2023-10-04 Jump to invalid address: 02400000