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 2021 DraycEM "C19" |
v1.14.2 |
2023-11-26 |
UI scissor out of bounds in MainScreen: 1434,12-360,799 / 1806,810 |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-26 |
UI scissor out of bounds in MainScreen: 65,0-1358,811 / 1806,810 |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-26 |
UI scissor out of bounds in GamePauseScreen: 1428,24-360,787 / 1806,810 |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-26 |
UI scissor out of bounds in GamePauseScreen: 65,24-1352,787 / 1806,810 |
eFootball PES 2021 DraycEM "C19" |
v1.9.3 |
2023-11-25 |
ReadFromHardware: Invalid address 139d98a8 near PC 08849a4c LR 08849a58 |
eFootball PES 2021 DraycEM "C19" |
v1.9.3 |
2023-11-22 |
ReadFromHardware: Invalid address 139745b8 near PC 08849a4c LR 08849a58 |
eFootball PES 2021 DraycEM "C19" |
v1.11.3 |
2023-11-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=08caf9fc, pos=0, access=1, data=1, text=1 |
eFootball PES 2021 DraycEM "C19" |
v1.11.3 |
2023-11-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b22c, pos=0, access=1, data=2, text=2 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-11-14 |
Unexpected mpeg first timestamp: 4c49 / 19529 |
eFootball PES 2021 DraycEM "C19" |
v1.13.2 |
2023-11-08 |
__KernelStopThread: thread 316 does not exist |
eFootball PES 2021 DraycEM "C19" |
v1.16.6 |
2023-11-07 |
Unknown GetPointer 95bbb9c2 PC 0884d7b4 LR 0884d7d4 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-10-30 |
Replacement rowPitch=2048, but w=3416 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-02 |
UI scissor out of bounds in GamePauseScreen: 433,26-267,1454 / 1480,720 |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-02 |
UI scissor out of bounds in GamePauseScreen: 0,26-420,1454 / 1480,720 |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-02 |
UI scissor out of bounds in GamePauseScreen: 1060,26-400,694 / 720,1480 |
eFootball PES 2021 DraycEM "C19" |
v1.14.2 |
2023-11-02 |
UI scissor out of bounds in GamePauseScreen: 0,26-1047,694 / 720,1480 |
eFootball PES 2021 DraycEM "C19" |
v1.5.2 |
2023-10-26 |
Render to texture with incompatible formats 3 != 1 at 00000000 |
eFootball PES 2021 DraycEM "C19" |
v1.16.1 |
2023-10-22 |
Unknown GetPointerWrite 00000000 PC 088113c0 LR 088113dc |
eFootball PES 2021 DraycEM "C19" |
v1.6.3 |
2023-10-14 |
Error in shader program link: info: L0100 A program cannot be linked unless there are any shaders attached to it
fs: 00000000:0001d022 Tex TexAlpha TFuncMod AlphaTest0 >
#version 100
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying mediump vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
gl_FragColor = v;
}
vs: 00000000:00000918 HWX C T 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;
varying lowp vec4 v_color0;
varying 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 = color0;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
}
|
eFootball PES 2021 DraycEM "C19" |
v1.6.3 |
2023-10-14 |
Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program
fs: 00000000:0001d002 Tex TFuncMod AlphaTest0 >
#version 100
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying mediump vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
if (v.a < 0.002) discard;
gl_FragColor = v;
}
vs: 00000000:00000918 HWX C T 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;
varying lowp vec4 v_color0;
varying 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 = color0;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
}
|
eFootball PES 2021 DraycEM "C19" |
v1.6.3 |
2023-10-14 |
Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program
fs: 00000000:0001d022 Tex TexAlpha TFuncMod AlphaTest0 >
#version 100
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying mediump vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
gl_FragColor = 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 100
precision highp float;
attribute vec3 position;
attribute mediump vec3 normal;
attribute 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;
varying lowp vec4 v_color0;
varying mediump 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 PES 2021 DraycEM "C19" |
v1.6.3 |
2023-10-14 |
Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program
fs: 00004000:0001d022 Tex TexAlpha Flat TFuncMod AlphaTest0 >
#version 100
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying mediump vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
gl_FragColor = v;
}
vs: 40000000:00000910 HWX T Tex Flat
#version 100
precision highp float;
attribute vec3 position;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform lowp vec4 u_matambientalpha;
varying lowp vec4 v_color0;
varying 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 PES 2021 DraycEM "C19" |
v1.6.3 |
2023-10-14 |
Error in shader program link: info: L0100 GLSL allows exactly two attached shaders (one of each type) per program
fs: 00000000:00000002 Tex TFuncMod
#version 100
precision lowp float;
uniform sampler2D tex;
varying vec4 v_color0;
varying mediump vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
gl_FragColor = v;
}
vs: 00000000:00000918 HWX C T 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;
varying lowp vec4 v_color0;
varying 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 = color0;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
}
|
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-10-11 |
Unknown GetPointer 00591400 PC 0884a918 LR 0884a938 |
eFootball PES 2021 DraycEM "C19" |
v1.16.2 |
2023-09-22 |
__KernelStopThread: thread 335 does not exist (helper deleted) |
eFootball PES 2021 DraycEM "C19" |
v1.15.3 |
2023-09-20 |
ReadFromHardware: Invalid address 12847900 near PC 12847900 LR 12847900 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-09-17 |
Replacement rowPitch=1024, but w=3008 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.16.1 |
2023-09-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
eFootball PES 2021 DraycEM "C19" |
v1.16.1 |
2023-09-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=08cacbd0, pos=0, access=1, data=2, text=2 |
eFootball PES 2021 DraycEM "C19" |
v1.9.3 |
2023-09-13 |
ReadFromHardware: Invalid address 13960848 near PC 08849a4c LR 08849a58 |
eFootball PES 2021 DraycEM "C19" |
v1.13.1 |
2023-09-08 |
Unknown GetPointerWrite 00000002 PC 08a02db8 LR 08922f74 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-09-08 |
Unknown GetPointer cf024dfe PC 0881c428 LR 0881c438 |
eFootball PES 2021 DraycEM "C19" |
v1.12.2 |
2023-09-07 |
MIPSCompileOp: Invalid instruction 0000008e |
eFootball PES 2021 DraycEM "C19" |
v1.12.2 |
2023-09-07 |
MIPSCompileOp: Invalid instruction eeeeee50 |
eFootball PES 2021 DraycEM "C19" |
v1.10.2 |
2023-09-27 |
807f00fd=sceMp3Init(00000000): invalid bitrate v2 l0 rate 0005 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-08-17 |
MIPSCompileOp: Invalid instruction cfb10024 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-08-08 |
ReadFromHardware: Invalid address 0a000000 near PC 08220ff8 LR 08220ff8 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-07-27 |
MIPSCompileOp: Invalid instruction 474009cb |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-07-20 |
Unknown GetPointerWrite 00000003 PC 08a02afc LR 089f1774 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-07-07 |
__KernelStopThread: thread 338 does not exist (helper deleted) |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-07-02 |
Unknown GetPointer 8c51cdf8 PC 0884d7b4 LR 0884d7d4 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-29 |
80420014=__sceSasCore(08bb3ac0, 0cb66980): invalid address |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-29 |
Unknown GetPointer 0000d2bd PC 0881c428 LR 0881c438 |
eFootball PES 2021 DraycEM "C19" |
v1.15.3 |
2023-06-28 |
ReadFromHardware: Invalid address d931fbd2 near PC d931fbd2 LR d931fbd2 |
eFootball PES 2021 DraycEM "C19" |
v1.6.3 |
2023-06-28 |
Error in shader program link: info: Link failed because of missing vertex shader.
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 mediump float v_fogdepth;
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;
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 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 PES 2021 DraycEM "C19" |
v1.6.3 |
2023-06-28 |
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_EXT_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;
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: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 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
MIPSCompileOp: Invalid instruction 00001001 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
MIPSCompileOp: Invalid instruction 00000028 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
MIPSCompileOp: Invalid instruction 4c77cc8a |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
Branch in Jump delay slot at 08e21f20 in block starting at 08e215c8 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
Jump to invalid address: 0568c360 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
Branch in Jump delay slot at 08e21f20 in block starting at 08e21580 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-24 |
Jump to invalid address: 03885360 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-20 |
Rendering to framebuffer offset at 04162000 +384x0 (stride 512) |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000005, pos=0, access=1, data=1, text=1 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-07-14 |
Failed to truncate file. |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-15 |
Unknown GetPointerWrite 00000000 PC 08808458 LR 08808460 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-14 |
Unknown GetPointer f79d4479 PC 0884a918 LR 0884a938 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-10 |
Unknown GetPointer 0000f310 PC 0881c430 LR 0881c438 |
eFootball PES 2021 DraycEM "C19" |
v1.15.4 |
2023-06-10 |
Unknown GetPointerWrite 00000020 PC 08a02afc LR 0885be68 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-12 |
Replacement rowPitch=768, but w=1000 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-07 |
Replacement rowPitch=768, but w=1024 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.9.4 |
2023-06-07 |
ReadFromHardware: Invalid address f0462dcc near PC f0462dcc LR 08000018 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-01 |
Replacement rowPitch=512, but w=5120 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-05-30 |
Replacement rowPitch=256, but w=4000 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-05-28 |
ReadFromHardware: Invalid address 00000001 near PC 00000001 LR 08a1f464 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-15 |
Replacement rowPitch=384, but w=800 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-05-25 |
Replacement rowPitch=512, but w=2892 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-05-25 |
Replacement rowPitch=128, but w=1416 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.16.6 |
2023-11-28 |
00000400=sceGeEdramSetAddrTranslation(00000800) |
eFootball PES 2021 DraycEM "C19" |
v1.7.5 |
2023-05-21 |
ReadFromHardware: Invalid address eb4f29f2 near PC eb4f29f2 LR eb4f29f2 |
eFootball PES 2021 DraycEM "C19" |
v1.15.3 |
2023-05-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bf65c0, pos=0, access=1, data=2, text=2 |
eFootball PES 2021 DraycEM "C19" |
v1.15.2 |
2023-05-08 |
00000400=sceGeEdramSetAddrTranslation(00000400) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-07 |
Replacement rowPitch=384, but w=512 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-05-05 |
Replacement rowPitch=256, but w=3072 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-30 |
Replacement rowPitch=128, but w=480 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-30 |
Replacement rowPitch=512, but w=3200 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-06-15 |
Replacement rowPitch=2048, but w=5760 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-24 |
Replacement rowPitch=1024, but w=4000 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.1 |
2023-04-23 |
UI scissor out of bounds in RemoteISOScreen: 225,20-300,940 / 960,540 |
eFootball PES 2021 DraycEM "C19" |
v1.14.1 |
2023-04-23 |
UI scissor out of bounds in RemoteISOScreen: 0,20-210,935 / 960,540 |
eFootball PES 2021 DraycEM "C19" |
v1.14.1 |
2023-04-23 |
UI scissor out of bounds in RemoteISOScreen: 1155,11-538,295 / 967,544 |
eFootball PES 2021 DraycEM "C19" |
v1.14.1 |
2023-04-23 |
UI scissor out of bounds in RemoteISOScreen: 0,11-1129,292 / 967,544 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-19 |
Replacement rowPitch=2048, but w=2560 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-08-24 |
Replacement rowPitch=1024, but w=3416 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-17 |
Replacement rowPitch=512, but w=4032 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-16 |
Replacement rowPitch=1024, but w=3648 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-15 |
Replacement rowPitch=1024, but w=2560 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-14 |
Replacement rowPitch=2048, but w=8192 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-13 |
Unknown GetPointer 93854dbd PC 93854dbd LR 93854dbd |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-13 |
ReadFromHardware: Invalid address 93854dbd near PC 93854dbd LR 93854dbd |
eFootball PES 2021 DraycEM "C19" |
v1.16.3 |
2023-10-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
eFootball PES 2021 DraycEM "C19" |
v1.16.3 |
2023-10-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-15 |
Replacement rowPitch=512, but w=2352 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-11 |
Replacement rowPitch=512, but w=3072 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-09 |
Replacement rowPitch=512, but w=2124 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.10.3 |
2023-04-09 |
ReadFromHardware: Invalid address 800201a6 near PC 08220d54 LR 08220d4c |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-08 |
Replacement rowPitch=1024, but w=2400 (level=0) |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-04 |
Unknown GetPointer 00001b85 PC 0884a918 LR 0884a938 |
eFootball PES 2021 DraycEM "C19" |
v1.14.4 |
2023-04-04 |
Replacement rowPitch=256, but w=4096 (level=0) |