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 Season 2026/27 By Ardi Css |
v1.18.1 |
2026-09-12 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| eFootball PES 2021 T. Bendezu "C19" |
v1.13 |
2026-08-31 |
sceGeBreak(mode=0, unknown=09fff4d0): unknown ptr (valid) |
| eFootball Season 2026/27 By Ardi Css |
v1.9.4 |
2026-09-14 |
Savedata version requested on save: 3 |
| MONSTER HUNTER FREEDOM™ 2 |
v1.13 |
2026-07-22 |
sceDmacMemcpy(dest=0414e000, src=0941c020, size=230976): overlapping read |
| eFootball Chelito 19 |
v1.13 |
2026-06-29 |
Unknown GetPointerWrite 00000000 PC 08816130 LR 08816144 |
| EA-Sports FC Lop-Play |
v1.16.6 |
2026-08-22 |
GE Interrupt: newState might be 3 |
| EA-Sports FC Lop-Play |
v1.16.6 |
2026-08-26 |
GE Interrupt: newState might be 1 |
| Resistance: Retribution™ |
v1.13 |
2026-06-10 |
WriteToHardware: Invalid address 3f7fdf47 near PC 08ca1a70 LR 08ca2aac |
| Resistance: Retribution™ |
v1.13 |
2026-06-10 |
ReadFromHardware: Invalid address 0671d510 near PC 08ca275c LR 08ca275c |
| Resistance: Retribution™ |
v1.13 |
2026-06-10 |
Unknown GetPointerWrite 191f1eb8 PC 08cd674c LR 08cd6754 |
| Resistance: Retribution™ |
v1.13 |
2026-06-10 |
D3D error in shader compilation: info: C:\Program Files\PPSSPP\Shader@0x000001E720322C80(74,14-28): error X4505: maximum temp register index exceeded
C:\Program Files\PPSSPP\Shader@0x000001E720322C80(80,16-55): error X4505: maximum temp register index exceeded
C:\Program Files\PPSSPP\Shader@0x000001E720322C80(80,12-69): error X4505: maximum temp register index exceeded
C:\Program Files\PPSSPP\Shader@0x000001E720322C80(77,28-83): error X4505: maximum temp register index exceeded
C:\Program Files\PPSSPP\Shader@0x000001E720322C80(77,65-81): error X4505: maximum temp register index exceeded
C:\Program Files\PPSSPP\Shader@0x000001E720322C80(77,28-83): error X4505: maximum temp register index exceeded
/ code: #define vec2 float2
#define vec3 float3
#define vec4 float4
#define ivec2 int2
#define ivec4 int4
#define mat2 float2x2
#define mat4 float4x4
#define mat3x4 float4x3
#define splat3(x) vec3(x, x, x)
#define lowp
#define mediump
#define highp
#pragma warning( disable : 3571 )
mat4 u_proj : register(c0);
vec4 u_matambientalpha : register(c20);
mat3x4 u_world : register(c11);
mat3x4 u_view : register(c8);
mat3x4 u_texmtx : register(c14);
vec4 u_uvscaleoffset : register(c17);
vec3 u_lightpos0 : register(c24);
vec3 u_lightatt0 : register(c32);
vec3 u_lightambient0 : register(c48);
vec3 u_lightdiffuse0 : register(c40);
vec3 u_lightspecular0 : register(c44);
vec3 u_lightpos1 : register(c25);
vec3 u_lightatt1 : register(c33);
vec3 u_lightdir1 : register(c29);
vec4 u_lightangle_spotCoef1 : register(c37);
vec3 u_lightambient1 : register(c49);
vec3 u_lightdiffuse1 : register(c41);
vec3 u_lightspecular1 : register(c45);
vec4 u_ambient : register(c19);
vec3 u_matdiffuse : register(c21);
vec4 u_matspecular : register(c22);
vec3 u_matemissive : register(c23);
vec4 u_depthRange : register(c52);
vec4 u_cullRangeMin : register(c80);
vec4 u_cullRangeMax : register(c81);
struct VS_IN {
vec2 texcoord : TEXCOORD0;
vec4 color0 : COLOR0;
vec3 normal : NORMAL;
vec3 position : POSITION;
};
struct VS_OUT {
vec3 v_texcoord : TEXCOORD0;
vec4 v_color0 : COLOR0;
vec3 v_color1 : COLOR1;
vec4 gl_Position : POSITION;
};
vec3 normalizeOr001(vec3 v) {
return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v);
}
VS_OUT main(VS_IN In) {
VS_OUT Out;
vec2 texcoord = In.texcoord;
vec4 color0 = In.color0;
vec3 normal = In.normal;
vec3 position = In.position;
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);
lowp vec4 lightSum0 = u_ambient * color0 + 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;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0);
if (ldot >= 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
if (u_matspecular.a <= 0.0) {
ldot = 1.0;
} else {
ldot = pow(max(ldot, 0.0), u_matspecular.a);
}
if (ldot > 0.0)
lightSum1 += u_lightspecular0 * u_matspecular.rgb * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient0 * color0.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
angle = length(u_lightdir1) == 0.0 ? 0.0 : dot(normalize(u_lightdir1), toLight);
if (angle >= u_lightangle_spotCoef1.x) {
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef1.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef1.y));
} else {
lightScale = 0.0;
}
diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ld |
| eFootball All Nations 2026 |
v1.9.4 |
2026-09-14 |
Savedata version requested: 3 |
| eFootball Chelito 19 |
v1.16.5 |
2026-09-05 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 14 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145224280 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
GE Interrupt: newState might be 0 |
| Virtua Tennis: World Tour |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151249632 |
| Virtua Tennis: World Tour |
v1.13 |
2026-04-18 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146210816 |
| Virtua Tennis: World Tour |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151249632 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146210816 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146185776 |
| EA-Sports FC Lop-Play |
v1.16.6 |
2026-08-26 |
GE Interrupt: newState might be 7 |
| EA-Sports FC Lop-Play |
v1.16.6 |
2026-08-26 |
GE Interrupt: newState might be 4 |
| EA-Sports FC Lop-Play |
v1.16.6 |
2026-08-26 |
GE Interrupt: newState might be 0 |
| eFootball Chelito 19 |
v1.16.5 |
2026-09-05 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=0880defc, pos=0, access=1, data=2, text=2 |
| eFootball JOELAND |
v1.9.4 |
2026-09-15 |
Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8 |
| eFootball JOELAND |
v1.9.4 |
2026-09-12 |
sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read |
| Game Sepak Bola PPSSPP |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball JOELAND |
v1.9.4 |
2026-09-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball Chelito 19 |
v1.13 |
2026-01-06 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04044000/04088000 |
| eFootball JOELAND |
v1.20.4 |
2026-09-15 |
sceNetAdhocMatchingInit(32768) at 08a719b8 |
| eFootball JOELAND |
v1.9.4 |
2026-09-15 |
80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header |
| eFootball Chelito 19 |
v1.13 |
2026-01-06 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04000000/04088000 |
| eFootball JOELAND |
v1.8.0 |
2026-09-14 |
Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4 |
| eFootball JOELAND |
v1.18.1-87-gda0168f41a |
2026-09-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| eFootball JOELAND |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball JOELAND |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| eFootball Chelito 19 |
v1.17.1-980-gabaea0197b |
2026-09-09 |
80630011=sceAtracSetHalfwayBufferAndGetID(08bff040, 00000000, 00040000): buffer too small |
| EA |
v1.18.1-846-gab47c3cb1f |
2026-09-12 |
Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4 |
| EA |
v1.18.1-87-gda0168f41a |
2026-09-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| EA |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| EA |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| eFootball Chelito 19 * BETEGAMING |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball Lop - Play |
v1.9.4 |
2026-09-15 |
MIPSCompileOp: Invalid instruction 46800499 |
| eFootball PES 2024 "SN3" |
v1.17.1 |
2026-04-18 |
GE Interrupt: newState might be 1 |
| MYFP26 ENGLISH |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball RB - V. |
v1.9.4 |
2026-09-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball RB - V. |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| EA-Sports FC Lop-Play |
v1.18.1-846-gab47c3cb1f |
2026-09-15 |
Unknown GetPointer 00000020 PC 08815fc8 LR 08815fd4 |
| EA-Sports FC Lop-Play |
v1.20.4 |
2026-09-15 |
sceNetAdhocMatchingInit(32768) at 08a719b8 |
| EA-Sports FC Lop-Play |
v1.18.1-993-ge80941403a |
2026-09-15 |
Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800 |
| EA-Sports FC Lop-Play |
v1.9.4 |
2026-09-15 |
sceDmacMemcpy(dest=040cc000, src=086ce900, size=1251072): overlapping read |
| EA-Sports FC Lop-Play |
v1.9.4 |
2026-09-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| EA-Sports FC Lop-Play |
v1.18.1-945-gb0182ed0e6 |
2026-09-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| EA-Sports FC Lop-Play |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| EA-Sports FC Lop-Play |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| eFootball 2026 StaR Patch |
v1.18.1-840-g60c98a6483 |
2026-09-12 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| eFootball 2026 StaR Patch |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| eFootball 2026 StaR Patch |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball Lop - Play |
v1.9.4 |
2026-09-15 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16) |
| "eFootball Mod Full Asia Musim 2024 by TRMD" |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| EA FC 2024 BY SPARTAN JR 11 |
v1.9.4 |
2026-09-10 |
Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8 |
| eFootball 2025 by MP |
v1.13 |
2025-07-27 |
Unknown GetPointer 11d0f8a0 PC 11d0f8a0 LR 11d0f8a0 |
| EA FC 2024 BY SPARTAN JR 11 |
v1.9.4 |
2026-09-14 |
Savedata version requested on save: 3 |
| EA FC 2024 BY SPARTAN JR 11 |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball Lop - Play |
v1.9.4 |
2026-09-15 |
80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header |
| eFootball Lop - Play |
v1.18.1-986-ga174fdb19e |
2026-09-15 |
Unknown GetPointer 00000020 PC 08815fc8 LR 08815fd4 |
| eFootball Lop - Play |
v1.9.4 |
2026-09-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball Lop - Play |
v1.18.1-993-ge80941403a |
2026-09-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| eFootball Lop - Play |
v1.18.1-898-gb189688689 |
2026-09-13 |
Unknown GetPointer 00000000 PC 0884a918 LR 0884a938 |
| eFootball Lop - Play |
v1.18.1-993-ge80941403a |
2026-09-15 |
Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800 |
| eFootball Lop - Play |
v1.20.4 |
2026-09-15 |
sceNetAdhocMatchingInit(32768) at 08a719b8 |
| eFootball Lop - Play |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball Lop - Play |
v1.18.1-846-gab47c3cb1f |
2026-09-14 |
Unknown GetPointerWrite 00000000 PC 08824cf4 LR 088113dc |
| eFootball Lop - Play |
v1.18.1-846-gab47c3cb1f |
2026-09-14 |
Unknown GetPointer 00000140 PC 08824cf4 LR 088113dc |
| eFootball Lop - Play |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| MLB 11 The Show™ |
v1.13 |
2025-07-10 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (24840004), bad data |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.18.1-908-gd7aa236e13 |
2026-09-12 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball 2025 by MP |
v1.18.1-846-gab47c3cb1f |
2025-09-11 |
ReadFromHardware: Invalid address 11d0f8a0 near PC 11d0f8a0 LR 11d0f8a0 |
| BETEGAMING12 |
v1.18.1-846-gab47c3cb1f |
2026-08-19 |
Unknown GetPointerWrite 00000000 PC 08808448 LR 08808460 |
| BETEGAMING12 |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| eFootball 2025 by MP |
v1.9.4 |
2026-09-15 |
Savedata version requested on save: 3 |
| eFootball 2025 by MP |
v1.9.4 |
2026-09-15 |
Savedata version requested: 3 |
| Ben 10 Alien Force: Vilgax Attacks |
v1.13 |
2025-06-02 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 0890413c |
| Transformers: The Game |
v1.13 |
2025-06-01 |
__KernelStopThread: thread 611 does not exist |
| Transformers: The Game |
v1.13 |
2025-06-01 |
__KernelStopThread: thread 569 does not exist |
| eFootball PC - V. |
v1.9.4 |
2026-07-21 |
sceDmacMemcpy(dest=08701400, src=040cc000, size=1043456): overlapping read |
| PATCH SPARTAN11 |
v1.18.1 |
2026-07-18 |
MIPSCompileOp: Invalid instruction 46800499 |
| PATCH SPARTAN11 |
v1.9.4 |
2026-09-07 |
Savedata version requested on save: 3 |
| eFootball PES 2024 "SN3" |
v1.13 |
2026-04-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
| eFootball Esteem2025 |
v1.13 |
2025-04-19 |
807f00fd=sceMp3Init(00000000): invalid bitrate v0 l0 rate 0000 |
| eFootball Esteem2025 |
v1.13 |
2025-04-19 |
sceMp3Init: invalid data: not layer 3 |
| EA-Sports FC PC-V |
v1.13 |
2025-03-22 |
FBO created from existing depthbuffer as color, 04198000/00000000 and 04110000/04198000 |
| EA-Sports FC PC-V |
v1.13 |
2025-06-01 |
FBO created from existing depthbuffer as color, 04198000/00000000 and 04088000/04198000 |
| EA-Sports FC PC-V |
v1.13 |
2025-03-22 |
FBO created from existing depthbuffer as color, 04198000/00000000 and 04000000/04198000 |