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 |
PES 2013 |
v1.13.1 |
2023-02-06 |
ReadFromHardware: Invalid address 00000078 near PC 08868c0c LR 08868c18 |
PES 2013 |
v1.13.1 |
2023-02-06 |
ReadFromHardware: Invalid address 0000001c near PC 08e97cb0 LR 08e97cc0 |
PES 2013 |
v1.13.1 |
2023-02-06 |
WriteToHardware: Invalid address 00000004 near PC 089f5808 LR 089f5808 |
PES 2013 |
v1.13.1 |
2023-02-06 |
ReadFromHardware: Invalid address 00000020 near PC 089f5a64 LR 089f5a24 |
PES 2013 |
v1.13.1 |
2023-02-01 |
MIPSCompileOp: Invalid instruction 70c2fb18 |
PES 2013 |
v1.13.1 |
2023-02-01 |
Jump to invalid address: 02fae944 |
PES 2013 |
v1.13.1 |
2023-02-01 |
MIPSCompileOp: Invalid instruction 70c2f6cc |
PES 2013 |
v1.13.1 |
2023-02-01 |
MIPSCompileOp: Invalid instruction 70c2f248 |
PES 2013 |
v1.13.1 |
2023-02-01 |
MIPSCompileOp: Invalid instruction 70bf2950 |
PES 2013 |
v1.14.4 |
2023-01-31 |
GE Interrupt: newState might be 5 |
PES 2013 |
v1.14.4 |
2023-01-31 |
GE Interrupt: newState might be 4 |
PES 2013 |
v1.14.4 |
2023-01-31 |
GE Interrupt: newState might be 3 |
PES 2013 |
v1.14.4 |
2023-01-31 |
GE Interrupt: newState might be 7 |
PES 2013 |
v1.14.4 |
2023-01-31 |
GE Interrupt: newState might be 6 |
PES 2013 |
v1.14.1 |
2023-01-29 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc6500, pos=0, access=1, data=2, text=2 |
PES 2013 |
v1.14.2 |
2023-01-23 |
UI scissor out of bounds in GamePauseScreen: 433,26-267,1254 / 1280,720 |
PES 2013 |
v1.14.2 |
2023-01-23 |
UI scissor out of bounds in GamePauseScreen: 0,26-420,1254 / 1280,720 |
PES 2013 |
v1.14.2 |
2023-01-23 |
UI scissor out of bounds in GamePauseScreen: 0,26-847,694 / 720,1280 |
PES 2013 |
v1.14.4 |
2023-01-22 |
Error in shader compilation: info: Vertex shader compilation failed.
ERROR: 0:125: 'comp' : redefinition
ERROR: 0:126: 'type' : redefinition
ERROR: 0:174: 'comp' : redefinition
ERROR: 0:175: 'type' : redefinition
ERROR: 0:223: 'comp' : redefinition
ERROR: 0:224: 'type' : redefinition
ERROR: 6 compilation errors. No code generated.
01000000:80000b30 HWX T N Tex Light: LightUberShader Cull
#version 300 es
// Driver: Adreno (TM) 305 - GLSL 300
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 ( |
PES 2013 |
v1.14.4 |
2023-01-20 |
80630006=sceAtracSetData(2, 08d13140, 00000aec): invalid RIFF header |
PES 2013 |
v1.14.4 |
2023-01-17 |
Unknown GetPointer 00000140 PC 088113b8 LR 088113e4 |
PES 2013 |
v1.13.2 |
2023-01-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167768576 |
PES 2013 |
v1.13.2 |
2023-01-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144313108 |
PES 2013 |
v1.14.4 |
2023-01-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d74120, pos=0, access=1, data=1, text=1 |
PES 2013 |
v1.14.4 |
2023-01-07 |
80630011=sceAtracSetDataAndGetID(00000000, 00000000): buffer too small |
PES 2013 |
v1.14.2 |
2023-01-06 |
UI scissor out of bounds in GamePauseScreen: 168,37-91,2240 / 544,1113 |
PES 2013 |
v1.14.2 |
2023-01-06 |
UI scissor out of bounds in GamePauseScreen: 18,37-146,2240 / 544,1113 |
PES 2013 |
v1.14.2 |
2023-01-05 |
sceDmacMemcpy(dest=040cc000, src=0948d230, size=557056): overlapping read |
PES 2013 |
v1.14.4 |
2023-01-15 |
Unknown GetPointer 00000140 PC 08824a64 LR 088113e4 |
PES 2013 |
v1.13.2 |
2022-12-20 |
Unknown GetPointerWrite 00000000 PC 08824a64 LR 088113e4 |
PES 2013 |
v1.13.2 |
2022-12-12 |
Utility access thread still running, state: shutting down, dialog=1/1 |
PES 2013 |
v1.13.2 |
2022-12-12 |
sceUtilityMsgDialogInitStart: invalid status |
PES 2013 |
v1.13.2 |
2022-12-05 |
An uneaten prefix at end of block: 08c3a5e8 |
PES 2013 |
v1.13.2 |
2022-12-05 |
sceKernelCreateThread(name=update_thread): unsupported attributes a0000000 |
PES 2013 |
v1.13.2 |
2022-12-04 |
Branch in Jump delay slot at 08a113e4 in block starting at 08a113e4 |
PES 2013 |
v1.13.2 |
2022-12-04 |
Branch in Jump delay slot at 08a113fc in block starting at 08a113fc |
PES 2013 |
v1.13.2 |
2022-11-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
PES 2013 |
v1.13.2 |
2022-11-23 |
Unknown GetPointer deadbf0f PC 0881608c LR 088160a0 |
PES 2013 |
v1.13.2 |
2022-11-18 |
MIPSCompileOp: Invalid instruction 000003e8 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 07383500 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0ce0 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 073834c0 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0cdc in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 07383430 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0cd8 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 07383410 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0cd4 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 073833f0 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 073833e8 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0cc8 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 073833e4 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0cc4 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 073833e0 |
PES 2013 |
v1.13.2 |
2022-11-18 |
MIPSCompileOp: Invalid instruction 00000041 |
PES 2013 |
v1.13.2 |
2022-11-18 |
MIPSCompileOp: Invalid instruction 00000301 |
PES 2013 |
v1.13.2 |
2022-11-18 |
MIPSCompileOp: Invalid instruction 4584d800 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 074f8140 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0c38 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 07303bc0 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0c34 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 075e2cc0 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Branch in Jump delay slot at 09ce0c30 in block starting at 09ce0c30 |
PES 2013 |
v1.13.2 |
2022-11-18 |
Jump to invalid address: 07560e00 |
PES 2013 |
v1.13.2 |
2022-11-18 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 19792 |
PES 2013 |
v1.13.2 |
2022-11-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145983520 |
PES 2013 |
v1.13.2 |
2022-11-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145972200 |
PES 2013 |
v1.13.2 |
2022-11-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=2, text=2 |
PES 2013 |
v1.13.2 |
2022-11-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=1, text=1 |
PES 2013 |
v1.13.2 |
2022-11-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145089472 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Jump to invalid address: 07ff8f40 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Jump to invalid address: 0507e500 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Unknown GetPointer 00000000 PC 0881c21c LR 0881c6e4 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Rendering to framebuffer offset: 04110000 +256x0 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe0c |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe10 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe12 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe16 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe1a |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe1e |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe22 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe28 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe2e |
PES 2013 |
v1.13.2 |
2022-11-16 |
Bottom-right corner of source of block transfer is at an invalid address: 0480fe34 |
PES 2013 |
v1.13.2 |
2022-11-16 |
Texture with unexpected bufw (full=32048) |
PES 2013 |
v1.13.2 |
2022-11-23 |
Unknown GetPointerWrite 00000000 PC 088287fc LR 0882880c |
PES 2013 |
v1.13.2 |
2022-11-10 |
MIPSCompileOp: Invalid instruction 44f10000 |
PES 2013 |
v1.13.2 |
2022-11-10 |
MIPSCompileOp: Invalid instruction 450c3000 |
PES 2013 |
v1.13.2 |
2022-11-10 |
MIPSCompileOp: Invalid instruction 0000104e |
PES 2013 |
v1.13.2 |
2022-11-08 |
Unknown GetPointerWrite 00000003 PC 08a02db8 LR 08a01bb4 |
PES 2013 |
v1.11 |
2022-11-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349168 |
PES 2013 |
v1.13.2 |
2022-10-31 |
Unexpected mpeg first timestamp: ec34690ef3b / 16231865315131 |
PES 2013 |
v1.13.2 |
2022-10-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=08cd1630, pos=0, access=1, data=2, text=2 |
PES 2013 |
v1.13.2 |
2022-11-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=08cd1630, pos=0, access=1, data=1, text=1 |
PES 2013 |
v1.13.2 |
2022-10-12 |
ReadFromHardware: Invalid address 1288c0e0 near PC 08863f34 LR 0884d5b0 |
PES 2013 |
v1.13.1 |
2022-10-03 |
Branch in Jump delay slot at 09fff6f4 in block starting at 09fff694 |
PES 2013 |
v1.13.2 |
2023-02-01 |
Unknown GetPointerWrite 00000000 PC 0881608c LR 088160a0 |
PES 2013 |
v1.13.2 |
2022-10-11 |
807f00fd=sceMp3Init(00000000): invalid bitrate v2 l0 rate 0009 |
PES 2013 |
v1.14.4 |
2023-01-17 |
Unknown GetPointerWrite 00000000 PC 08808450 LR 08808468 |
PES 2013 |
v1.11 |
2022-11-06 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
PES 2013 |
v1.13.1 |
2022-08-29 |
80630007=sceAtracSetData(2, 08d4b180, 0000fe00): atracID uses different codec type than data |