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 |
N O BRABO |
v1.6.2 |
2025-10-19 |
ReadFromHardware: Invalid address 148267cd near PC 088d2d14 LR 088d2d14 |
N O BRABO |
v1.6.2 |
2025-10-18 |
Unknown GetPointer 00000000 PC 08816130 LR 08816144 |
eFootball PES 2021 By GABRIEL |
v1.6.2 |
2025-10-21 |
ReadFromHardware: Invalid address 1482678d near PC 088d2d14 LR 088d2d14 |
PES MY 2024 |
v1.6.2 |
2025-09-28 |
ReadFromHardware: Invalid address 1481824d near PC 088d2d14 LR 088d2d14 |
eFootball PC - V. |
v1.6.2 |
2025-09-24 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 00004000:00200022 Tex TexAlpha Fog Flat TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
flat 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: 40000000:0000091c HWX C T Fog Tex Flat
#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;
flat 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 RB - V. |
v1.9.4 |
2025-10-20 |
Game install with no files / data |
eFootball RB - V. |
v1.9.4 |
2025-10-22 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball RB - V. |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
EA-Sports FC Lop-Play |
v1.6.3 |
2025-10-21 |
GL ran out of GPU memory; switching to low memory mode |
EA-Sports FC Lop-Play |
v1.9.4 |
2025-10-17 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16) |
EA-Sports FC Lop-Play |
v1.9.4 |
2025-10-22 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
EA-Sports FC Lop-Play |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
EA-Sports FC Lop-Play |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
EA FC 2024 BY SPARTAN JR 11 |
v1.9.4 |
2025-10-21 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
EA FC 2024 BY SPARTAN JR 11 |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
N O BRABO |
v1.9 |
2025-10-19 |
Unexpected mpeg first timestamp: fffffffffff / 17592186044415 |
N O BRABO |
v1.9 |
2025-10-19 |
Savedata version requested: 3 |
eFootball Lop - Play |
v1.9.4 |
2025-10-22 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16) |
eFootball Lop - Play |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
eFootball Lop - Play |
v1.9.4 |
2025-10-22 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball Lop - Play |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball Lop - Play |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball CESAR - PATCH |
v1.6.3 |
2025-09-29 |
GL ran out of GPU memory; switching to low memory mode |
eFootball PC - V. |
v1.6.3 |
2025-10-09 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00004000:00000002 Tex Flat TFuncMod
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
flat in vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
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 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 PC - V. |
v1.6.2 |
2025-07-10 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00000000:0001d000 AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D testtex;
in vec4 v_color0;
out vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
if (v.a < 0.002) discard;
fragColor0 = v;
}
vs: 00000000:0000000a THR C
#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);
}
|
Marvel Trading Card Game |
v1.6.2 |
2025-06-28 |
Unexpected mpeg first timestamp: 1464 / 5220 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-28 |
Unexpected mpeg first timestamp: dc5f / 56415 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-28 |
Unexpected mpeg first timestamp: 3c55 / 15445 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-28 |
Unexpected mpeg first timestamp: 5451 / 21585 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-28 |
Unexpected mpeg first timestamp: 2431 / 9265 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-28 |
Unexpected mpeg first timestamp: 8c0f / 35855 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-27 |
Unexpected mpeg first timestamp: 9448 / 37960 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-27 |
Unexpected mpeg first timestamp: 9c3b / 39995 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-27 |
Unexpected mpeg first timestamp: c26 / 3110 |
Marvel Trading Card Game |
v1.6.2 |
2025-06-27 |
Unexpected mpeg first timestamp: a406 / 41990 |
BETEGAMING12 |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball PC - V. |
v1.8.0 |
2025-10-12 |
GL ran out of GPU memory; switching to low memory mode |
Def Jam® Fight For NY™: The Takeover |
v1.6.2 |
2025-05-17 |
sceDmacMemcpy(dest=09645940, src=08400000, size=17792): overlapping read |
eFootball PC - V. |
v1.6.2 |
2025-04-18 |
Error in shader program link: info: Link failed because of missing fragment shader.
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 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;
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 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 PES By HAROUN TECH |
v1.6.2 |
2025-04-17 |
Error in shader program link: info: Link Error: Vertex shader is missing.
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 highp 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 highp 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 PES By HAROUN TECH |
v1.6.2 |
2025-04-17 |
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 PES By HAROUN TECH |
v1.6.2 |
2025-04-10 |
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 PES By HAROUN TECH |
v1.6.2 |
2025-04-04 |
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: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 PC - V. |
v1.6.3 |
2025-06-14 |
Error in shader program link: info: Link failed because of missing fragment shader.
fs: 00004000:00200022 Tex TexAlpha Fog Flat TFuncMod
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
flat in vec4 v_color0;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out 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: 40000000:0000091c HWX C T Fog Tex Flat
#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;
flat 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 = 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 PC - V. |
v1.6.2 |
2025-03-27 |
Error in shader program link: info: Link failed because of missing shader.
fs: 00004000:00000000 Flat
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
flat in vec4 v_color0;
out vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
fragColor0 = v;
}
vs: 40000000:00000002 THR Flat
#version 300 es
precision highp float;
in vec4 position;
in lowp vec4 color0;
uniform mat4 u_proj_through;
flat out lowp vec4 v_color0;
void main() {
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
eFootball 2024 By Master Pes |
v1.9.4 |
2025-10-01 |
Savedata version requested: 3 |
EFOOTBALL NEW PATCH SEASON |
v1.9.4 |
2025-10-21 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
eFootball CESAR - PATCH |
v1.9.4 |
2025-10-21 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball CESAR - PATCH |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball PC - V. |
v1.6.3 |
2025-09-21 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00004000:00000000 Flat
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
flat in vec4 v_color0;
out vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
fragColor0 = v;
}
vs: 40000000:00000002 THR Flat
#version 300 es
precision highp float;
in vec4 position;
in lowp vec4 color0;
uniform mat4 u_proj_through;
flat out lowp vec4 v_color0;
void main() {
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
EA FC 2024 BY RA-PATCH |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball REBELMODZZ |
v1.6.2 |
2025-03-05 |
GL ran out of GPU memory; switching to low memory mode |
eFootball By TM ARTS |
v1.6.2 |
2025-03-02 |
GL ran out of GPU memory; switching to low memory mode |
eFootball PC - V. |
v1.9.4 |
2025-10-21 |
sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read |
eFootball SM - V. |
v1.9.4 |
2025-09-05 |
GL ran out of GPU memory; switching to low memory mode |
eFootball PC - V. |
v1.9.4 |
2025-10-22 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball PC - V. |
v1.9.4 |
2025-10-21 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball PC - V. |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball 2025 by MP |
v1.9.4 |
2025-10-21 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball REBELMODZZ |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball 2025 by MP |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Unimplemented HLE function sceKernelFindModuleByUID |
eFootball SM - V. |
v1.9.2 |
2025-10-22 |
Unknown GetPointer 80020142 PC 08220d4c LR 08220d4c |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Unknown syscall in known module 'ThreadManForKernel': 0x809ce29b |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Unimplemented HLE function sceKernelDcacheWritebackAll |
eFootball PC - V. |
v1.6.2 |
2025-01-25 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00004000:00200022 Tex TexAlpha Fog Flat TFuncMod
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
flat in vec4 v_color0;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out 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: 40000000:00000914 HWX T Fog 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;
uniform highp vec2 u_fogcoef;
flat 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 = 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);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
}
|
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball SM - V. |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
WWE SmackDown vs. RAW 2011 |
v1.6.2 |
2025-01-23 |
Unknown GetPointer 0a00c4f8 PC 08bfbe54 LR 08bfbe5c |
eFootball PC - V. |
v1.6.2 |
2025-01-22 |
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 Chelito 19 |
v1.6.2 |
2025-01-19 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 00004000:00000000 Flat
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
flat in vec4 v_color0;
inout vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
fragColor0 = v;
}
vs: 40000000:00000100 HWX Flat
#version 300 es
precision highp float;
in vec3 position;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform lowp vec4 u_matambientalpha;
flat out lowp vec4 v_color0;
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;
}
|
eFootball Chelito 19 |
v1.9.4 |
2025-10-12 |
GL ran out of GPU memory; switching to low memory mode |
eFootball Chelito 19 |
v1.6.3 |
2025-02-03 |
Error in shader program link: info: Link Error: Vertex shader is missing.
fs: 00000000:0001d000 AlphaTest0 >
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D testtex;
in vec4 v_color0;
inout vec4 fragColor0;
void main() {
vec4 v = v_color0 ;
if (v.a < 0.002) discard;
fragColor0 = v;
}
vs: 00000000:0000000a THR C
#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);
}
|
PES MY 2024 |
v1.7.5 |
2025-10-20 |
Unknown GetPointer 00000000 PC 0881c2c0 LR 0881c2d0 |
PES MY 2024 |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
Grand Theft Auto: Vice City Stories |
v1.6.2 |
2024-12-19 |
Error in shader program link: info: L0100 A program cannot be linked unless there are any shaders attached to it
fs: 00000000:00a0d802 Tex LM Fog 2x TFuncMod AlphaTest >
#version 100
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying vec3 v_color1;
uniform vec3 u_fogcolor;
varying mediump float v_fogdepth;
varying mediump vec3 v_texcoord;
void main() {
vec4 s = vec4(v_color1, 0.0);
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a) + s;
float aResult = texture2D(testtex, vec2(v.a * 0.996094 + 0.001953, 0)).a;
if (aResult < 0.5) discard;
v.rgb = v.rgb * 2.0;
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
gl_FragColor = v;
}
vs: 03170000:41c00b15 HWX T N LM Fog Tex Bones:8 Light: 0: c:0 t:0 MatUp:7 WScale 1
#version 100
precision highp float;
attribute mediump vec4 w1, w2;
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform mat4 u_bone0;
uniform mat4 u_bone1;
uniform mat4 u_bone2;
uniform mat4 u_bone3;
uniform mat4 u_bone4;
uniform mat4 u_bone5;
uniform mat4 u_bone6;
uniform mat4 u_bone7;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying mediump float v_fogdepth;
void main() {
mat4 skinMatrix = w1.x * u_bone0 + w1.y * u_bone1 + w1.z * u_bone2 + w1.w * u_bone3 + w2.x * u_bone4 + w2.y * u_bone5 + w2.z * u_bone6 + w2.w * u_bone7;
vec3 skinnedpos = (skinMatrix * vec4(position, 1.0)).xyz * 1.9921875;
vec3 worldpos = (u_world * vec4(skinnedpos, 1.0)).xyz;
mediump vec3 skinnednormal = (skinMatrix * vec4(normal, 0.0)).xyz * 1.9921875;
mediump vec3 worldnormal = normalize((u_world * vec4(skinnednormal, 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);
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = vec3(0.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.6.2 |
2024-11-25 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 00000000:00000002 Tex TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
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 = vec4(t.rgb * p.rgb, p.a);
fragColor0 = v;
}
vs: 01770000:00000b10 HWX T N 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;
out lowp vec4 v_color0;
out highp vec3 v_texcoord;
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);
}
|
eFootball PC - V. |
v1.6.2 |
2024-11-03 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00000000:00000002 Tex TFuncMod
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
in vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
fragColor0 = v;
}
vs: 00000000:00000018 C Tex
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
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 * vec4(position.xyz, 1.0);
}
|
eFootball PC - V. |
v1.6.2 |
2024-11-03 |
Error in shader program link: info: Link failed because of missing fragment shader.
fs: 00000000:0001d022 Tex TexAlpha TFuncMod AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
in vec4 v_color0;
in mediump vec3 v_texcoord;
out 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: 00000000:00000010 Tex
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
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 * vec4(position.xyz, 1.0);
}
|
eFootball PC - V. |
v1.6.2 |
2024-11-03 |
Error in shader program link: info: Link failed because of missing shader.
fs: 00000000:0001d022 Tex TexAlpha TFuncMod AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
in vec4 v_color0;
in mediump vec3 v_texcoord;
out 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: 00000000:00000018 C Tex
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
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 * vec4(position.xyz, 1.0);
}
|
eFootball PC - V. |
v1.6.2 |
2024-11-03 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00000000:0001d002 Tex TFuncMod AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
in vec4 v_color0;
in mediump vec3 v_texcoord;
out 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:00000018 C Tex
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
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 * vec4(position.xyz, 1.0);
}
|
eFootball PC - V. |
v1.6.2 |
2024-11-03 |
Error in shader program link: info: Link failed because of missing fragment shader.
fs: 00004000:0001d022 Tex TexAlpha Flat TFuncMod AlphaTest0 >
#version 300 es
#extension GL_ARM_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
flat in vec4 v_color0;
in mediump vec3 v_texcoord;
out 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:00000010 Tex Flat
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
flat 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 * vec4(position.xyz, 1.0);
}
|
eFootball PC - V. |
v1.9.4 |
2025-10-22 |
sceDmacMemcpy(dest=04154000, src=0948f1f0, size=557056): overlapping read |
EA-Sports FC PC-V |
v1.9.4 |
2025-10-21 |
sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read |
eFootball 2025 |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball 2025 STAR PATCH |
v1.9.4 |
2025-10-21 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball 2025 STAR PATCH |
v1.9.4 |
2025-10-22 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball 2025 STAR PATCH |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball 2025 Betway Premiership By Zamani |
v1.9.4 |
2025-10-21 |
Savedata version requested: 3 |
eFootball PC - V. |
v1.9.4 |
2025-10-20 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
eFootball PC - V. |
v1.9.4 |
2025-10-22 |
Savedata version requested: 3 |
eFootball PC - V. |
v1.9.4 |
2025-10-22 |
sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read |
Bomba Patch Nova Era 2024 JP Gameplay's |
v1.9.4 |
2025-10-16 |
Savedata version requested: 3 |
Bomba Patch Nova Era 2024 JP Gameplay's |
v1.9.4 |
2025-10-16 |
UNIMPL sceUtilityLoadUsbModule(1) |
eFootball Chelito 19 |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
eFootball Chelito 19 |
v1.9.4 |
2025-10-22 |
Game install with no files / data |
eFootball Chelito 19 |
v1.9.4 |
2025-10-22 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |