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 RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 29328 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147002140 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146993220 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
Render to texture with incompatible formats 3 != 1 at 04000000 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 166232480 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 158723776 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c68, pos=0, access=1, data=2, text=2 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c68, pos=0, access=1, data=1, text=1 |
| eFootball RB - V. |
v1.10.2 |
2025-11-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 16 |
| EAFC 26 By Komo Valeri |
v1.9.4 |
2025-11-04 |
Savedata version requested: 3 |
| Grand Theft Auto: Chinatown Wars |
v1.10.2 |
2025-10-31 |
D3D error in shader compilation: info: C:\Users\asrie\Documents\PPSSPP\Shader@0x000002E13739F1D0(108,16-57): error X4505: maximum temp register index exceeded
C:\Users\asrie\Documents\PPSSPP\Shader@0x000002E13739F1D0(108,12-71): error X4505: maximum temp register index exceeded
/ code: #pragma warning( disable : 3571 )
float4x4 u_proj : register(c0);
float4 u_matambientalpha : register(c20);
float4x3 u_world : register(c11);
float4x3 u_view : register(c8);
float4 u_uvscaleoffset : register(c17);
float3 u_lightpos0 : register(c24);
float3 u_lightambient0 : register(c48);
float3 u_lightdiffuse0 : register(c40);
float3 u_lightspecular0 : register(c44);
float3 u_lightpos1 : register(c25);
float3 u_lightatt1 : register(c33);
float3 u_lightdir1 : register(c29);
float4 u_lightangle_spotCoef1 : register(c37);
float3 u_lightambient1 : register(c49);
float3 u_lightdiffuse1 : register(c41);
float3 u_lightspecular1 : register(c45);
float3 u_lightpos2 : register(c26);
float3 u_lightatt2 : register(c34);
float3 u_lightdir2 : register(c30);
float4 u_lightangle_spotCoef2 : register(c38);
float3 u_lightambient2 : register(c50);
float3 u_lightdiffuse2 : register(c42);
float3 u_lightspecular2 : register(c46);
float3 u_lightpos3 : register(c27);
float3 u_lightambient3 : register(c51);
float3 u_lightdiffuse3 : register(c43);
float3 u_lightspecular3 : register(c47);
float4 u_ambient : register(c19);
float3 u_matdiffuse : register(c21);
float4 u_matspecular : register(c22);
float3 u_matemissive : register(c23);
float4 u_cullRangeMin : register(c80);
float4 u_cullRangeMax : register(c81);
struct VS_IN {
float2 texcoord : TEXCOORD0;
float3 normal : NORMAL;
float3 position : POSITION;
};
struct VS_OUT {
float3 v_texcoord : TEXCOORD0;
float4 v_color0 : COLOR0;
float3 v_color1 : COLOR1;
float4 gl_Position : POSITION;
};
VS_OUT main(VS_IN In) {
VS_OUT Out;
float3 worldpos = mul(float4(In.position.xyz, 1.0), u_world);
float3 worldnormal = normalize(mul(float4(In.normal, 0.0), u_world));
float4 viewPos = float4(mul(float4(worldpos, 1.0), u_view), 1.0);
float4 outPos = mul(viewPos, u_proj);
float4 lightSum0 = u_ambient * u_matambientalpha + float4(u_matemissive, 0.0);
float3 lightSum1 = 0;
float3 toLight;
float3 diffuse;
float distance;
float lightScale;
float ldot;
float angle;
toLight = u_lightpos0;
ldot = dot(toLight, worldnormal);
diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0);
if (ldot >= 0.0) {
ldot = dot(normalize(toLight + float3(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 ;
}
lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse);
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, float3(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(ldot, 0.0);
if (ldot >= 0.0) {
ldot = dot(normalize(toLight + float3(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_lightspecular1 * u_matspecular.rgb * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
angle = length(u_lightdir2) == 0.0 ? 0.0 : dot(normalize(u_lightdir2), toLight);
if (angle >= u_lightangle_spotCoef2.x) {
lightScale = clamp(1.0 / dot(u_lightat |
| FMPES Sulamericano 2025 By RICARDO MODS. |
v1.11 |
2025-11-03 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
Branch in Jump delay slot at 080305c8 in block starting at 080305b4 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction f32ceb40 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction cec40000 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 00003bfa |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 06fb4344 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 0000005f |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 007fc03d |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 000005fb |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 026ef305 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction cfa003ef |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 40af9069 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 000006fb |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
Branch in RSRTComp delay slot at 08029d60 in block starting at 08029d60 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
Branch in RSRTComp delay slot at 08029d5c in block starting at 08029d3c |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction ce23f90b |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 0000103e |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction f3105dd0 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction ccfcccfc |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction cccca4fb |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 0000003f |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction cfc0009f |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 02ffffff |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 9ff50000 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 00017dff |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 434fe345 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction edefeded |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction eeeeeeff |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction ee300000 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 0005fc9f |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 000bffff |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction 00000029 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
ReadFromHardware: Invalid address deadcbe3 near PC 08029c10 LR 08000020 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
WriteToHardware: Invalid address deadbeef near PC 08029bf0 LR 08000020 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
MIPSCompileOp: Invalid instruction eeffeeee |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.10.2 |
2025-10-27 |
Jump to invalid address: 02666668 |
| eFOOTBALL By YUNIER YUNIER & EDITOR ECUADOR PSP |
v1.10.2 |
2025-10-27 |
80630006=sceAtracSetDataAndGetID(097cc740, 00020000): invalid RIFF header |
| eFOOTBALL By YUNIER YUNIER & EDITOR ECUADOR PSP |
v1.10.2 |
2025-10-27 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-27 |
ReadFromHardware: Invalid address ff404040 near PC ff404040 LR 08000018 |
| FMPES Sulamericano 2025 By RICARDO MODS. |
v1.10.2 |
2025-10-26 |
Unknown GetPointer 00000000 PC 08815f0c LR 08000020 |
| eFootball 2024 By Komo Valeri |
v1.10.2 |
2025-10-23 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
| ナルティメットアクセル3 |
v1.10.2 |
2025-10-22 |
__KernelStopThread: thread 3918 does not exist |
| PES 2017 PATCH BY SKAYY PATCH |
v1.10.2 |
2025-10-23 |
Unknown GetPointer 00000000 PC 08816150 LR 08816164 |
| eFootball RB - V. |
v1.10.2 |
2025-10-21 |
Render to area containing texture at 04162000 +256x0 |
| eFootball FWC C19 |
v1.10.2 |
2025-10-21 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
| EA FC 2024 BY FUMA GOONERS |
v1.10.2 |
2025-10-21 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
| Def Jam® Fight For NY™: The Takeover |
v1.10.2 |
2025-10-19 |
sceKernelRegisterSubIntrHandler(30, 0, 08805a28, 00000488): duplicate handler |
| eFootball 2025 |
v1.10.2 |
2025-10-19 |
Unknown GetPointer 000004b6 PC 08872bb4 LR 08872c1c |
| Tomb Raider: Anniversary |
v1.10.2 |
2025-10-18 |
sceDmacMemcpy(dest=041be400, src=093f3300, size=9216): overlapping read |
| eFootball RB - V. |
v1.10.2 |
2025-10-29 |
MIPSCompileOp: Invalid instruction 475f5053 |
| eFootball RB - V. |
v1.10.2 |
2025-10-29 |
MIPSCompileOp: Invalid instruction 63736964 |
| eFootball RB - V. |
v1.10.2 |
2025-10-29 |
Unknown GetPointer 00000000 PC 00000000 LR 00000000 |
| EA SPORTS FC26 BY Charly |
v1.10.3 |
2025-10-24 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
| The Fast and the Furious |
v1.10.2 |
2025-10-17 |
Unknown syscall in known module 'SysclibForKernel': 0xb49a7697 |
| GODS EATER BURST |
v1.10.2 |
2025-10-17 |
ReadFromHardware: Invalid address dc20f543 near PC dc20f543 LR 088387d4 |
| EA SPORTS FC26 BY Charly |
v1.19.3 |
2025-11-04 |
Savedata version requested: 3 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x56c039b5 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x1fb15a32 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x58b1f937 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
Unknown syscall in known module 'ThreadManForKernel': 0x4e3a1105 |
| eFootball Lop - Play |
v1.10.3 |
2025-11-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x3f53e640 |
| eFootball Lop - Play |
v1.10.3 |
2025-11-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x28b6489c |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
Unknown syscall in known module 'ThreadManForKernel': 0xd6da4ba1 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
Unknown syscall in known module 'SysclibForKernel': 0xb49a7697 |
| eFootball Lop - Play |
v1.10.2 |
2025-10-16 |
An uneaten prefix at end of block: 08a19a68 |
| Tomb Raider: Anniversary |
v1.10.2 |
2025-10-15 |
sceDmacMemcpy(dest=041d2000, src=091bd4b0, size=9216): overlapping read |
| UFC® Undisputed™ 2010 |
v1.10.2 |
2025-10-15 |
Video out requested, not supported: mode=0 size=512,272 |
| UFC® Undisputed™ 2010 |
v1.10.2 |
2025-10-15 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=2 |
| eFootball 2026 StaR Patch |
v1.9.4 |
2025-10-22 |
Unimplemented HLE function sceKernelFindModuleByUID |
| Yu-Gi-Oh! GX Tag Force 3 |
v1.10.2 |
2025-10-13 |
WriteToHardware: Invalid address 7c12a608 near PC 088497cc LR 088497cc |
| The Lord Of The Rings: Aragon's Quest |
v1.10.2 |
2025-10-12 |
WriteToHardware: Invalid address 00000014 near PC 089135a4 LR 089135a4 |
| The Lord Of The Rings: Aragon's Quest |
v1.10.2 |
2025-10-12 |
WriteToHardware: Invalid address 000000ac near PC 089135a4 LR 089135a4 |
| eFootball FWC C19 |
v1.10.2 |
2025-10-27 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
| MYFP26 ENGLISH |
v1.9.4 |
2025-11-04 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| EA FC 2024 BY FUMA GOONERS |
v1.10.2 |
2025-10-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0 |
| EA FC 2024 BY FUMA GOONERS |
v1.8.0 |
2025-10-21 |
Unimplemented HLE function sceKernelFindModuleByUID |
| EA FC 2024 BY FUMA GOONERS |
v1.8.0 |
2025-10-21 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
| EA FC 2024 BY FUMA GOONERS |
v1.8.0 |
2025-10-21 |
Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f |
| eFootball FWC C19 |
v1.10.2 |
2025-10-27 |
Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f |
| Tomb Raider: Anniversary |
v1.10.2 |
2025-10-10 |
sceDmacMemcpy(dest=0419c400, src=095bebc0, size=9216): overlapping read |
| eFootball RB - V. |
v1.9.4 |
2025-11-03 |
Savedata version requested: 3 |
| eFootball Edicion Mundial de Clubes By T. Bendezu |
v1.19.3 |
2025-11-01 |
BREAK instruction hit |
| Gungnir |
v1.10.2 |
2025-10-08 |
WriteToHardware: Invalid address 00000024 near PC 0897a6ac LR 0897a4d8 |
| EFOOTBALL AMERICANO GMR15YPB |
v1.10.2 |
2025-10-14 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
| EFOOTBALL AMERICANO GMR15YPB |
v1.10.2 |
2025-10-27 |
Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f |
| eFootball RB - V. |
v1.8.0 |
2025-10-31 |
sceDmacMemcpy(dest=04154000, src=0948f1b0, size=557056): overlapping read |
| eFootball RB - V. |
v1.8.0 |
2025-10-31 |
Unknown GetPointer 00000000 PC 0881f5b8 LR 08000020 |
| MYFP26 ENGLISH |
v1.9.4 |
2025-11-04 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
| MYFP26 ENGLISH |
v1.9.4 |
2025-11-04 |
Savedata version requested on save: 3 |