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-02-05 |
Replacement rowPitch=1024, but w=1600 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-05 |
Replacement rowPitch=512, but w=1920 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-05 |
Replacement rowPitch=1024, but w=2224 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-03 |
Replacement rowPitch=512, but w=2624 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-03 |
__KernelStopThread: thread 574 does not exist (helper deleted) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-03 |
Replacement rowPitch=256, but w=2284 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-02 |
Unknown GetPointer 95ed00b3 PC 0884d5a0 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-04 |
Replacement rowPitch=512, but w=1200 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-02-03 |
Replacement rowPitch=512, but w=4096 (level=0) |
eFootball PES 2020 "C19" |
v1.6.3 |
2023-01-31 |
Error in shader program link: info: No validate shaders are attached in program
fs: 00000000:00200002 Tex Fog TFuncMod
#version 300 es
precision lowp float;
uniform sampler2D tex;
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 = vec4(t.rgb * p.rgb, p.a);
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 PES 2020 "C19" |
v1.6.3 |
2023-01-31 |
Error in shader program link: info: No validate shaders are attached in program
fs: 00004000:0021d022 Tex TexAlpha Fog Flat TFuncMod AlphaTest0 >
#version 300 es
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
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;
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: 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 PES 2020 "C19" |
v1.14.4 |
2023-01-30 |
Replacement rowPitch=256, but w=1492 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-29 |
Replacement rowPitch=128, but w=400 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-29 |
Replacement rowPitch=256, but w=2880 (level=0) |
eFootball PES 2020 "C19" |
v1.9.4 |
2023-01-27 |
Unknown GetPointer 95f5cbf3 PC 0884d5a0 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-31 |
Replacement rowPitch=128, but w=280 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-29 |
Replacement rowPitch=512, but w=2800 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Replacement rowPitch=512, but w=2880 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c68, pos=0, access=1, data=2, text=2 |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c68, pos=0, access=1, data=1, text=1 |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-25 |
Replacement rowPitch=512, but w=5120 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-29 |
Replacement rowPitch=128, but w=2048 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-24 |
Replacement rowPitch=256, but w=2048 (level=0) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-24 |
Replacement rowPitch=2048, but w=6400 (level=0) |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-24 |
UI scissor out of bounds in GameSettingsScreen: 239,0-951,540 / 1128,540 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-24 |
UI scissor out of bounds in GameSettingsScreen: 127,0-510,272 / 604,272 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-21 |
UI scissor out of bounds in GamePauseScreen: 0,20-529,460 / 480,854 |
eFootball PES 2020 "C19" |
v1.5.4 |
2023-01-21 |
ReadFromHardware: Invalid address e918d624 near PC e918d624 LR 08000018 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,1483-608,1931 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,1710-608,1703 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 1300,20-600,1060 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,128-1280,952 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,0-1280,128 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 89,885-82,144 / 544,967 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,861-306,858 / 544,967 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,746-306,973 / 544,967 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 1163,5-538,301 / 967,544 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,0-1147,306 / 967,544 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,36-1147,270 / 967,544 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-18 |
UI scissor out of bounds in GamePauseScreen: 0,11-942,259 / 854,480 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-18 |
UI scissor out of bounds in MainScreen: 0,0-1286,721 / 1456,720 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
UI scissor out of bounds in GamePauseScreen: 2622,12-889,312 / 1600,720 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
UI scissor out of bounds in GamePauseScreen: 124,12-2469,312 / 1600,720 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
UI scissor out of bounds in GameSettingsScreen: 25,189-299,3147 / 720,1600 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
UI scissor out of bounds in GameSettingsScreen: 336,0-1251,720 / 720,1600 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
UI scissor out of bounds in GameSettingsScreen: 56,85-664,1416 / 1600,720 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-17 |
UI scissor out of bounds in GameSettingsScreen: 280,56-1307,664 / 720,1600 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01d92c00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01751500 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Branch in Jump delay slot at 08af1b60 in block starting at 08af1a9c |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0169ae00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 041d1e00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01d7bc00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0174c400 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Branch in Jump delay slot at 08af1b3c in block starting at 08af1a9c |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0168ad00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 041cf180 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01d64c00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01747300 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Branch in Jump delay slot at 08af1b18 in block starting at 08af1a9c |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0167ac00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 041cc500 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 00004e5e |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01d4dc00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01742200 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Branch in Jump delay slot at 08af1af4 in block starting at 08af1a9c |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0166ab00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 041c9880 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01d36c00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0173d100 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Branch in Jump delay slot at 08af1ad0 in block starting at 08af1a9c |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0165aa00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 041c6c00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 000158e9 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01d1fc00 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 01738000 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Branch in Jump delay slot at 08af1aac in block starting at 08af1a9c |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Jump to invalid address: 0164a900 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
MIPSCompileOp: Invalid instruction 041c3f80 |
eFootball PES 2020 "C19" |
v1.12.3 |
2023-01-15 |
Unknown GetPointer 95e9e1f3 PC 0884d5a0 LR 0884d7c4 |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-15 |
__KernelStopThread: thread 337 does not exist (helper deleted) |
eFootball PES 2020 "C19" |
v1.14.4 |
2023-01-14 |
Unknown GetPointer 0070281a PC 0884a908 LR 0884a928 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-13 |
UI scissor out of bounds in GameSettingsScreen: 178,0-774,480 / 899,480 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-12 |
UI scissor out of bounds in MainScreen: 0,0-996,721 / 1358,720 |
eFootball PES 2020 "C19" |
v1.14.1 |
2023-01-10 |
UI scissor out of bounds in MainScreen: 820,676-188,45 / 1510,720 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-09 |
UI scissor out of bounds in GameSettingsScreen: 0,113-270,1274 / 480,854 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-09 |
UI scissor out of bounds in GameSettingsScreen: 210,0-634,480 / 480,854 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-02-02 |
UI scissor out of bounds in GamePauseScreen: 1290,40-600,1040 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-02-02 |
UI scissor out of bounds in GamePauseScreen: 0,40-1270,1040 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-02-05 |
UI scissor out of bounds in MainScreen: 0,0-2276,72 / 1920,1080 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-08 |
UI scissor out of bounds in GamePauseScreen: 433,26-267,1438 / 1464,720 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-08 |
UI scissor out of bounds in GamePauseScreen: 0,26-420,1438 / 1464,720 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-08 |
UI scissor out of bounds in GamePauseScreen: 1044,26-400,694 / 720,1464 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-08 |
UI scissor out of bounds in GamePauseScreen: 0,26-1031,694 / 720,1464 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-20 |
UI scissor out of bounds in MainScreen: 0,0-1280,1080 / 1080,1920 |
eFootball PES 2020 "C19" |
v1.11.3 |
2023-01-07 |
MIPSCompileOp: Invalid instruction 07777777 |
eFootball PES 2020 "C19" |
v1.11.3 |
2023-01-07 |
MIPSCompileOp: Invalid instruction 00077777 |
eFootball PES 2020 "C19" |
v1.11.3 |
2023-01-07 |
MIPSCompileOp: Invalid instruction 70777777 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-07 |
UI scissor out of bounds in GameSettingsScreen: 226,0-798,544 / 967,544 |
eFootball PES 2020 "C19" |
v1.14.2 |
2023-01-07 |
UI scissor out of bounds in GameSettingsScreen: 452,0-1596,1088 / 1934,1088 |