Recent logs - eFootball Chelito 19 * BETEGAMING

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 * BETEGAMING v1.20.3 2026-05-15 PerformMemorySet with invalid range: 041a2980, size -655600644
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 WriteToHardware: Invalid address 00000004 near PC 088a69c4 LR 088a69f4
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 ReadFromHardware: Invalid address 00000004 near PC 088a69c4 LR 088a69f4
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 Unknown GetPointerWrite 00000000 PC 088287f8 LR 08828800
eFootball Chelito 19 * BETEGAMING v1.8.0 2026-05-12 Unknown GetPointer 0000006c PC 08872bb4 LR 08872c1c
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-05-09 sceMp3Init: invalid data: not layer 3
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-05-09 SCE_AVCODEC_ERROR_INVALID_DATA=sceMp3Init(00000000): invalid bitrate v0 l0 rate 0000
eFootball Chelito 19 * BETEGAMING v1.9.3 2026-05-07 Unknown GetPointer 00000000 PC 0881c428 LR 0881c438
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-04 Unknown GetPointer 00000002 PC 08a02afc LR 08872c1c
eFootball Chelito 19 * BETEGAMING v1.17.1-334-g1786a4ddb 2026-05-01 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08a41cc4
eFootball Chelito 19 * BETEGAMING v1.11.3 2026-04-29 Jump to invalid address: 02330440
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-04-29 PerformMemorySet with invalid range: 041adb80, size -579137058
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-04-25 PerformMemorySet with invalid range: 041a2980, size 1580191674
eFootball Chelito 19 * BETEGAMING v1.14.4 2026-04-21 Replacement rowPitch=512, but w=2800 (level=0)
eFootball Chelito 19 * BETEGAMING v1.14.4 2026-04-21 Replacement rowPitch=256, but w=1024 (level=0)
eFootball Chelito 19 * BETEGAMING v1.14.4 2026-04-21 Replacement rowPitch=128, but w=2048 (level=0)
eFootball Chelito 19 * BETEGAMING v1.12.3 2026-04-20 80020001=sceKernelCreateMutex(): invalid name
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-19 WriteToHardware: Invalid address 00000004 near PC 08856d1c LR 08856d28
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-19 ReadFromHardware: Invalid address 00000004 near PC 08856d1c LR 08856d28
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-18 Unknown GetPointer 00000000 PC 0881c2e0 LR 0881c2e8
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-04-17 PerformMemorySet with invalid range: 041c1300, size -48
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-17 ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 0884c9fc
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-17 WriteToHardware: Invalid address 00000004 near PC 08863d6c LR 0884c9fc
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-19 Unknown GetPointer 00000000 PC 0884d7cc LR 0884d7d4
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-04-27 Error in shader program link: info: Link Error: Fragment shader is missing. fs: thin3d #version 320 es #ifdef GL_ES precision mediump float; #endif #ifdef GL_ES precision lowp float; #endif #if __VERSION__ >= 130 #define varying in #define texture2D texture #define gl_FragColor fragColor0 out vec4 fragColor0; #endif varying vec4 oColor0; varying vec2 oTexCoord0; uniform sampler2D Sampler0; void main() { gl_FragColor = texture2D(Sampler0, oTexCoord0).zyxw * oColor0; } vs: thin3d #version 320 es #if __VERSION__ >= 130 #define attribute in #define varying out #endif attribute vec3 Position; attribute vec4 Color0; attribute vec2 TexCoord0; varying vec4 oColor0; varying vec2 oTexCoord0; uniform mat4 WorldViewProj; uniform vec2 TintSaturation; 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); } void main() { gl_Position = 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 * BETEGAMING v1.18.1 2026-04-16 ReadFromHardware: Invalid address 00000008 near PC 08857db8 LR 08857bb8
eFootball Chelito 19 * BETEGAMING v1.11.3 2026-04-16 sceDmacMemcpy(dest=09054040, src=086ce8c0, size=1251136): overlapping read
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 WriteToHardware: Invalid address 00000004 near PC 08856f24 LR 08856f30
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 ReadFromHardware: Invalid address 00000004 near PC 08856f24 LR 08856f30
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 Unknown GetPointerWrite 00000000 PC 08816154 LR 0881615c
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-14 ReadFromHardware: Invalid address 00000000 near PC 08a478b4 LR 08a3fbe4
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-05-09 Can't draw: No current render step. Step count: 0
eFootball Chelito 19 * BETEGAMING v1.17.1-334-g1786a4ddb 2026-04-13 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 0886af74
eFootball Chelito 19 * BETEGAMING v1.10.3 2026-04-06 sceDmacMemcpy(dest=09054040, src=086ce900, size=1251072): overlapping read
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-05-08 PerformMemorySet with invalid range: 041a2980, size 1580191671
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-04-28 ReadFromHardware: Invalid address 00000000 near PC 08a063b4 LR 08a3fbe4
eFootball Chelito 19 * BETEGAMING v1.11.3 2026-04-16 Unknown GetPointer 00000000 PC 08a478b4 LR 08a44350
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-05 sceDmacMemcpy(dest=040cc000, src=086ce8c0, size=1251136): overlapping read
eFootball Chelito 19 * BETEGAMING v1.11.3 2026-04-09 Unknown GetPointer 00000000 PC 08a478b4 LR 08a3fbe4
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-06 Unknown GetPointerWrite 00000000 PC 08808448 LR 08808460
eFootball Chelito 19 * BETEGAMING v1.20.4 2026-05-18 PerformMemorySet with invalid range: 041a2980, size 1016087033
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-04 MIPSCompileOp: Invalid instruction 01010101
eFootball Chelito 19 * BETEGAMING v1.11.3 2026-03-01 Unknown GetPointer 00000000 PC 08a1b7b0 LR 08000030
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7d90 in block starting at 09ca7d90
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7de4 in block starting at 09ca7dc4
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7de8 in block starting at 09ca7dc4
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7de8 in block starting at 09ca7da4
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7de4 in block starting at 09ca7da4
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7de4 in block starting at 09ca7d90
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-02-26 Branch in Jump delay slot at 09ca7de4 in block starting at 09ca7d98
eFootball Chelito 19 * BETEGAMING v1.10.3 2026-02-14 sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read
eFootball Chelito 19 * BETEGAMING v1.10.3 2026-02-11 Unknown GetPointer 00000000 PC 08000000 LR 08000000
eFootball Chelito 19 * BETEGAMING v1.10.3 2026-02-10 sceDmacMemcpy(dest=092ed040, src=086ce900, size=1251072): overlapping read
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-17 Unknown GetPointer 00000000 PC 08815f0c LR 08000020
eFootball Chelito 19 * BETEGAMING v1.10.3 2026-02-10 Unknown GetPointer 00000000 PC 08a02a0c LR 08808460
eFootball Chelito 19 * BETEGAMING v1.11.2 2026-01-26 Unknown GetPointer 00000000 PC 0882bbf4 LR 088113dc
eFootball Chelito 19 * BETEGAMING v1.6.3 2026-05-19 GL ran out of GPU memory; switching to low memory mode
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-17 sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read
eFootball Chelito 19 * BETEGAMING v1.19.3-1146-g9035485abf 2026-01-07 Branch in branch delay slot at 08028b70 with different target
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-19 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
eFootball Chelito 19 * BETEGAMING v1.20.3-318-g9dbfa83596 2026-05-18 Texture cache ran out of GPU memory; switching to low memory mode
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-18 Unknown GetPointer 00000000 PC 08808448 LR 08808460
eFootball Chelito 19 * BETEGAMING v1.19.3 2026-05-09 Game install with no files / data
eFootball Chelito 19 * BETEGAMING v1.19.3 2025-12-14 Branch in Jump delay slot at 08020400 in block starting at 08020020
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-05 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-16 Unknown GetPointer 00000000 PC 0884a918 LR 0884a938
eFootball Chelito 19 * BETEGAMING v1.20.3 2026-05-16 sceNetAdhocMatchingInit(32768) at 08a719b8
eFootball Chelito 19 * BETEGAMING v1.19.3 2025-12-03 Branch in branch delay slot at 080e54b8 with different target
eFootball Chelito 19 * BETEGAMING v1.19.3 2025-12-03 BREAK instruction hit
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-19 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-15 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-19 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-19 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-19 Savedata version requested on save: 3
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-04-30 Unknown GetPointer 00000020 PC 08815fc8 LR 08815fd4
eFootball Chelito 19 * BETEGAMING v1.18.1 2025-12-09 Unknown GetPointer 00000020 PC 08815f88 LR 08815fd4
eFootball Chelito 19 * BETEGAMING v1.18.1 2026-05-15 Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800
eFootball Chelito 19 * BETEGAMING v1.9.4 2026-05-19 Savedata version requested: 3