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 PES 2020 "C19" |
v1.14.4 |
2023-01-27 |
Replacement rowPitch=256, but w=400 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Error in shader compilation: info: ERROR: 0:47: 'gl_ClipDistance' : undeclared identifier
ERROR: 0:47: 'expression' : left of '[' is not of type array, matrix, or vector
ERROR: 0:47: 'assign' : l-value required (can't modify a const)
40000000:00000930 HWX T Tex Flat Cull
#version 320 es
#extension GL_EXT_clip_cull_distance : enable
// Driver: ANGLE (Samsung Xclipse 920) on Vulkan 1.1.179 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 40000000:00000930 HWX T Tex Flat Cull
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;
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 = 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_ClipDistance[0] = projZ * outPos.w + outPos.w + 0.000001;
if (u_cullRangeMin.w > 0.0) {
gl_CullDistance[0] = projPos.z - u_cullRangeMin.z;
gl_CullDistance[1] = u_cullRangeMax.z - projPos.z;
} else {
gl_CullDistance[0] = 0.0;
gl_CullDistance[1] = 0.0;
}
gl_Position = outPos;
}
|
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Error in shader compilation: info: ERROR: 0:48: 'gl_ClipDistance' : undeclared identifier
ERROR: 0:48: 'expression' : left of '[' is not of type array, matrix, or vector
ERROR: 0:48: 'assign' : l-value required (can't modify a const)
40000000:00000938 HWX C T Tex Flat Cull
#version 320 es
#extension GL_EXT_clip_cull_distance : enable
// Driver: ANGLE (Samsung Xclipse 920) on Vulkan 1.1.179 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 40000000:00000938 HWX C T Tex Flat 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;
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 = 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_ClipDistance[0] = projZ * outPos.w + outPos.w + 0.000001;
if (u_cullRangeMin.w > 0.0) {
gl_CullDistance[0] = projPos.z - u_cullRangeMin.z;
gl_CullDistance[1] = u_cullRangeMax.z - projPos.z;
} else {
gl_CullDistance[0] = 0.0;
gl_CullDistance[1] = 0.0;
}
gl_Position = outPos;
}
|
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Error in shader compilation: info: ERROR: 0:44: 'gl_ClipDistance' : undeclared identifier
ERROR: 0:44: 'expression' : left of '[' is not of type array, matrix, or vector
ERROR: 0:44: 'assign' : l-value required (can't modify a const)
00000000:00000128 HWX C Cull
#version 320 es
#extension GL_EXT_clip_cull_distance : enable
// Driver: ANGLE (Samsung Xclipse 920) on Vulkan 1.1.179 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000128 HWX C Cull
in vec3 position;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
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 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_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_ClipDistance[0] = projZ * outPos.w + outPos.w + 0.000001;
if (u_cullRangeMin.w > 0.0) {
gl_CullDistance[0] = projPos.z - u_cullRangeMin.z;
gl_CullDistance[1] = u_cullRangeMax.z - projPos.z;
} else {
gl_CullDistance[0] = 0.0;
gl_CullDistance[1] = 0.0;
}
gl_Position = outPos;
}
|
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Error in shader compilation: info: ERROR: 0:48: 'gl_ClipDistance' : undeclared identifier
ERROR: 0:48: 'expression' : left of '[' is not of type array, matrix, or vector
ERROR: 0:48: 'assign' : l-value required (can't modify a const)
00000000:00000938 HWX C T Tex Cull
#version 320 es
#extension GL_EXT_clip_cull_distance : enable
// Driver: ANGLE (Samsung Xclipse 920) on Vulkan 1.1.179 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000938 HWX C T Tex 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_ClipDistance[0] = projZ * outPos.w + outPos.w + 0.000001;
if (u_cullRangeMin.w > 0.0) {
gl_CullDistance[0] = projPos.z - u_cullRangeMin.z;
gl_CullDistance[1] = u_cullRangeMax.z - projPos.z;
} else {
gl_CullDistance[0] = 0.0;
gl_CullDistance[1] = 0.0;
}
gl_Position = outPos;
}
|
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Error in shader compilation: info: ERROR: 0:287: 'gl_ClipDistance' : undeclared identifier
ERROR: 0:287: 'expression' : left of '[' is not of type array, matrix, or vector
ERROR: 0:287: 'assign' : l-value required (can't modify a const)
01000000:80000b30 HWX T N Tex Light: LightUberShader Cull
#version 320 es
#extension GL_EXT_clip_cull_distance : enable
// Driver: ANGLE (Samsung Xclipse 920) on Vulkan 1.1.179 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000b30 HWX T N Tex 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;
if ((u_lightControl & 1u) != 0x0u) {
uint comp = (u_lightControl >> 0x04u) & 0x3u;
uint type = (u_lightControl >> 0x06u) & 0x3u;
if (type == 0x0u) {
toLight = u_lightpos0;
} else {
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
if (u_matspecular.a <= 0.0) {
ldot = 1.0;
} else {
ldot = pow(max(ldot, 0.0), u_matspecular.a);
}
}
switch (int(type)) {
case 1:
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
break;
case 2:
angle = length(u_lightdir0) == 0.0 ? 0.0 : dot(normalize(u_lightdir0), toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
break;
default:
lightScale = 1.0;
break;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u) {
if (ldot >= 0.0) {
ldo |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-12-25 |
Unknown GetPointer 00000000 PC 0881f5a0 LR 08000020 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145851408 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-10-28 |
Jump to invalid address: 0264e510 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-10-28 |
Jump to invalid address: 0264e4a0 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-10-22 |
WriteToHardware: Invalid address 00000000 near PC 0885f6e8 LR 0885f6c0 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-10-22 |
ReadFromHardware: Invalid address 00000000 near PC 0885f6e8 LR 0885f6c0 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-10-25 |
Unknown GetPointer 3d4a2047 PC 0888d3f4 LR 0888d3fc |
eFootball PES 2020 "C19" |
v1.13.2 |
2023-01-27 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00001000): invalid RIFF header |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-09-09 |
Unknown GetPointer 00000000 PC 00000000 LR 00000000 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-08-25 |
Unknown GetPointer 00000000 PC 088287e8 LR 088287f0 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 6 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 5 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 4 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 3 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 1 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 0 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-23 |
GE Interrupt: newState might be 7 |
eFootball PES 2020 "C19" |
v1.13.2 |
2023-01-04 |
Unknown GetPointer 00000140 PC 08824ce4 LR 088113c4 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-21 |
Unknown GetPointerWrite 00000000 PC 08824ce4 LR 088113c4 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-02 |
Unknown GetPointer 00000000 PC 0884a908 LR 0884a928 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-02 |
Unknown GetPointerWrite 00000000 PC 08816130 LR 08816144 |
eFootball PES 2020 "C19" |
v1.4-56-gb1a530b |
2022-08-03 |
sceKernelCreateThread(name=AdhocThread): unsupported options parameter 00001000 |
eFootball PES 2020 "C19" |
v1.14.1 |
2022-12-29 |
Unknown GetPointer 00000020 PC 08815fb0 LR 08815fbc |
eFootball PES 2020 "C19" |
v1.6.3 |
2022-08-01 |
GL ran out of GPU memory; switching to low memory mode |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-10 |
sceNetAdhocMatchingInit(32768) at 08a71984 |
eFootball PES 2020 "C19" |
v1.14.1 |
2022-12-29 |
Unknown GetPointerWrite 00000000 PC 088287e0 LR 088287f0 |
eFootball PES 2020 "C19" |
v1.13 |
2022-07-29 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296776 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-29 |
GetFramebufferCandidates(DEPTH): Multiple (2) candidate framebuffers. texaddr: 04710000 offset: 0 (512x512 stride 512, CLUT16) |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-26 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-26 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=1 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-19 |
Unknown GetPointer 6f54206f PC 08a02a1c LR 0887137c |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-11 |
80000107=sceDisplaySetFrameBuf(04000000, 512, 1, 0): must change latched framebuf first |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-11 |
80000107=sceDisplaySetFrameBuf(04044000, 512, 1, 0): must change latched framebuf first |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-09 |
Unknown GetPointer 00000000 PC 088113a8 LR 088113c4 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-06 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-05 |
Unknown GetPointer 00000000 PC 08871364 LR 0887137c |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-02 |
Unknown GetPointer 00000000 PC 08a02c8c LR 08983084 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-02 |
Unknown GetPointer 0e276d1d PC 0884d5a0 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-29 |
Unimplemented HLE function Kprintf |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-29 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-22 |
Waiting thread for 20 that was already waiting for 20 |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-10-26 |
Unknown GetPointer 00000000 PC 0881c2c0 LR 0881c2d0 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.11 |
2022-06-16 |
Jump to invalid address: 070c8044 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-17 |
Unknown GetPointer 00000000 PC 08824ce4 LR 088113c4 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-06-28 |
Unknown GetPointer 00000001 PC 0884d5a0 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.6.3 |
2022-06-11 |
sceDmacMemcpy(dest=04154000, src=0948f230, size=557056): overlapping read |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-23 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167508176 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-11-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-15 |
An uneaten prefix at end of block: 08a19a34 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-15 |
An uneaten prefix at end of block for 08a19a18 |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-05-11 |
Unknown GetPointer 00000000 PC 0884d7a4 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-05-11 |
Unknown GetPointer 5582609a PC 0884d7a4 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-05-09 |
Unknown GetPointer a520e507 PC 0884d5a0 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-05-09 |
80630006=sceAtracSetDataAndGetID(09a25200, 00003800): invalid RIFF header |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-07 |
Branch in RSRTComp delay slot at 00010014 in block starting at 00010000 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-07 |
Jump to invalid address: 00f93944 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-07 |
Jump to invalid address: 075746c0 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-07 |
Jump to invalid address: 0734d600 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-07 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 0899e65c |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-11-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145224280 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-05-07 |
Unknown GetPointer 00000000 PC 08808430 LR 08808448 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-07-26 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): invalid RIFF header |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-04-10 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-12-13 |
sceDmacMemcpy(dest=086ce8c0, src=040cc000, size=1251136): overlapping read |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-05-03 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16) |
eFootball PES 2020 "C19" |
v1.13.1 |
2022-08-13 |
sceDmacMemcpy(dest=040cc000, src=09517240, size=557056): overlapping read |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-06-13 |
807f00fd=sceMp3Init(00000000): invalid bitrate v2 l0 rate 0005 |
eFootball PES 2020 "C19" |
v1.11.3 |
2022-07-17 |
sceMp3Init: invalid data: not layer 3 |
eFootball PES 2020 "C19" |
v1.12.2 |
2022-03-25 |
ReadFromHardware: Invalid address d5f72d36 near PC d5f72d36 LR 08a3c160 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-03-12 |
Unknown GetPointer 00000000 PC 0881613c LR 08816144 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-02-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.12.3 |
2022-02-20 |
Unknown GetPointer 00000080 PC 0884d7a4 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.9.4 |
2022-07-30 |
Unknown GetPointer 00000000 PC 08a1b77c LR 08000030 |
eFootball PES 2020 "C19" |
v1.12.1 |
2022-01-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.12.1 |
2022-01-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
eFootball PES 2020 "C19" |
v1.12.1 |
2022-01-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0 |
eFootball PES 2020 "C19" |
v1.8.0 |
2022-01-12 |
Unknown GetPointer 80020142 PC 08220d4c LR 08220d4c |
eFootball PES 2020 "C19" |
v1.13.2 |
2022-12-14 |
sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read |
eFootball PES 2020 "C19" |
v1.9.4 |
2021-12-31 |
Unknown GetPointer 00000000 PC 08a02b30 LR 08a019dc |