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.11.3 |
2026-05-15 |
WriteToHardware: Invalid address 00000004 near PC 08863d74 LR 08856d28 |
| eFootball RB - V. |
v1.11.3 |
2026-05-15 |
ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 08856d28 |
| eFootball JOELAND |
v1.11.3 |
2026-05-15 |
MIPSCompileOp: Invalid instruction 9c200000 |
| eFootball JOELAND |
v1.11.3 |
2026-05-15 |
MIPSCompileOp 69a00000 failed |
| Pro Evolution Soccer 2008 |
v1.11.3 |
2026-05-14 |
Unknown GetPointer 00000000 PC 08820128 LR 08820138 |
| God of War®: Ghost of Sparta |
v1.11.3 |
2026-05-14 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r4p1-01rel0 [Revision 96995].
01f34444:00000b3d HWX C T N LM Fog Tex Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 MatUp:3 Cull
#version 100
// Mali-450 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
attribute lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec4 u_ambient;
uniform lowp vec4 u_matspecular;
uniform lowp vec3 u_matemissive;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying mediump float v_fogdepth;
void main() {
vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz;
mediump vec3 worldnormal = normalize(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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
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 * color0.rgb) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * color0.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * color0.rgb) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * color0.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * color0.rgb) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * color0.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * color0.rgb) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * color0.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
Branch in Jump delay slot at 088d19dc in block starting at 088d19d0 |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
Jump to invalid address: 0759f480 |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
MIPSCompileOp: Invalid instruction 71db52a0 |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
Branch in Jump delay slot at 088d178c in block starting at 088d1784 |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
MIPSCompileOp: Invalid instruction 71db4b74 |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
MIPSCompileOp: Invalid instruction 71d4615c |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
Unknown GetPointer 00000000 PC 08816084 LR 08816098 |
| eFootball 2026 By Komo Valeri |
v1.11.3 |
2026-05-14 |
Unknown GetPointer 00000000 PC 08815f0c LR 08000020 |
| Dragon Ball : Sparking Zero |
v1.11.3 |
2026-05-14 |
ReadFromHardware: Invalid address 0000003f near PC 088076b4 LR 08a80000 |
| WWE All Stars |
v1.11.3 |
2026-05-14 |
Unexpected mpeg first timestamp: c0068000001 / 13195884363777 |
| The 3rd Birthday |
v1.11.3 |
2026-05-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
| The 3rd Birthday |
v1.11.3 |
2026-05-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=00001234, pos=0, access=1, data=1, text=1 |
| FL26 BY VXGAMINGV2.0 |
v1.20.3 |
2026-05-14 |
UNIMPL sceKernelStopUnloadSelfModuleWithStatus(00000001, 00000000, 00000000, 00000000, 00000000): game has likely crashed |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-14 |
WriteToHardware: Invalid address 002e0052 near PC 0880a4e0 LR 0880b460 |
| "Pes ppsspp 2026 best collaboration Rapzz x Khenzoo |
v1.11.3 |
2026-05-13 |
Savedata version requested: 3 |
| eFootball 2026 By Komo Valeri |
v1.11.3 |
2026-05-14 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08a41cc4 |
| EA-Sports FC Lop-Play |
v1.11.3 |
2026-05-13 |
ReadFromHardware: Invalid address 13980718 near PC 08863d90 LR 08849a58 |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-15 |
MIPSCompileOp: Invalid instruction 46800499 |
| eFootball RB - V. |
v1.11.3 |
2026-05-12 |
Unknown GetPointer 00000000 PC 0886a7e0 LR 0886a7e0 |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-13 |
80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header |
| eFootball Chelito 19 |
v1.11.3 |
2026-05-12 |
Unknown GetPointer 00000000 PC 089d216c LR 089d20d8 |
| TEKKEN 7 VANILLA MOD PPSSPP |
v1.11.3 |
2026-05-12 |
ReadFromHardware: Invalid address 26eaf52c near PC 08859608 LR 08859600 |
| TEKKEN 7 VANILLA MOD PPSSPP |
v1.11.3 |
2026-05-12 |
ReadFromHardware: Invalid address 26eaf524 near PC 088595dc LR 088595dc |
| TEKKEN 7 VANILLA MOD PPSSPP |
v1.11.3 |
2026-05-12 |
ReadFromHardware: Invalid address 00050005 near PC 08ad29f0 LR 08ad1e1c |
| eFootball SAN JOE |
v1.11.3 |
2026-05-11 |
FBO created from existing depthbuffer as color, 04000000/04128000 and 04178000/04000000 |
| eFootball SAN JOE |
v1.11.3 |
2026-05-11 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc68c0, pos=0, access=1, data=2, text=2 |
| eFootball Chelito 19 |
v1.11.3 |
2026-05-11 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
| Prince of Persia - Rival Swords |
v1.11.3 |
2026-05-10 |
Unknown GE command : edd03311 |
| eFootball |
v1.11.3 |
2026-05-10 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
| eFootball |
v1.11.3 |
2026-05-10 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
| eFootball RB - V. |
v1.11.3 |
2026-05-10 |
ReadFromHardware: Invalid address 50a97836 near PC 50a97836 LR 08a3c194 |
| eFootball SM - V. |
v1.11.3 |
2026-05-10 |
MIPSCompileOp: Invalid instruction 42820016 |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
80630007=sceAtracSetData(2, 08d4b180, 0000d800): atracID uses different codec type than data |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
80630007=sceAtracSetData(2, 08d4b180, 00007680): atracID uses different codec type than data |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
80630007=sceAtracSetData(2, 08d4b180, 0000fe00): atracID uses different codec type than data |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
80630007=sceAtracSetData(2, 08d4b180, 00004100): atracID uses different codec type than data |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
| EA SPORTS FC26 |
v1.11.3 |
2026-05-10 |
sceGeBreak(mode=0, unknown=08d098b8): unknown ptr (valid) |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 02a026c0 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 038cef00 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e210e0 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
MIPSCompileOp: Invalid instruction 00000101 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e210a0 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 02a02800 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03884100 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03883f00 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03884000 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e21080 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03883e00 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
MIPSCompileOp: Invalid instruction 42d88000 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
MIPSCompileOp: Invalid instruction 42d05000 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 0389c420 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e21050 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 02b98ec0 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03884120 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e21010 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03883f20 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 02b98d40 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e20fe0 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 03884020 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e20fd0 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 029c12c0 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e20fb0 in block starting at 08e20580 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 02a026a0 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
MIPSCompileOp: Invalid instruction 430cc000 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
MIPSCompileOp: Invalid instruction 43f3c000 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Jump to invalid address: 029a3c40 |
| WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3 |
2026-05-10 |
Branch in Jump delay slot at 08e20f90 in block starting at 08e20580 |
| EFOOTBALL 26 PPSSPP BY SPARTAN |
v1.11.3 |
2026-05-09 |
MIPSCompileOp: Invalid instruction 01010101 |
| God of War™: Ghost of Sparta |
v1.11.3 |
2026-05-09 |
Unable to allocate kernel object, too many objects slots in use. |
| eFootball |
v1.8.0 |
2026-05-10 |
Savedata version requested on save: 3 |
| eFootball |
v1.11.3 |
2026-05-12 |
Savedata version requested: 3 |
| eFootball JOELAND |
v1.11.3 |
2026-05-08 |
sceDmacMemcpy(dest=040cc000, src=09517200, size=557056): overlapping read |
| eFootball PC - V. |
v1.11.3 |
2026-05-08 |
Unknown GetPointer 00000000 PC 0887c664 LR 0887c664 |
| eFootball Lop - Play |
v1.11.3 |
2026-05-08 |
sceSasSetSimpleADSR(08bb3ac0, 6, fffff43c, fffff635): Invalid ADSREnv2 |
| eFootball Lop - Play |
v1.11.3 |
2026-05-08 |
sceSasSetVoice: invalid loop mode 238 |
| eFootball Lop - Play |
v1.11.3 |
2026-05-08 |
sceSasSetSimpleADSR(08bb3ac0, 5, ffffb99a, ffffbb5f): Invalid ADSREnv2 |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d4b180, 00019800): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d4b180, 0000d800): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
Unknown GetPointer 00000000 PC 08bf6830 LR 08bf6840 |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
sceGeBreak(mode=0, unknown=08d098b8): unknown ptr (valid) |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d4b180, 00018000): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d4b180, 00012e00): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d4b180, 00005000): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
| EA SPORTS FC26 BY Charly |
v1.11.3 |
2026-05-08 |
80630007=sceAtracSetData(2, 08d13140, 00000aec): atracID uses different codec type than data |
| EA-Sports FC PC-V |
v1.11.3 |
2026-05-08 |
ReadFromHardware: Invalid address deadbeef near PC deadbeef LR deadbeef |
| EA-Sports FC PC-V |
v1.11.3 |
2026-05-08 |
WriteToHardware: Invalid address deadbeef near PC 083e1290 LR 2fff0000 |
| EA-Sports FC PC-V |
v1.11.3 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 6cfff400 |
| EA-Sports FC PC-V |
v1.11.3 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 0008ffff |
| EA-Sports FC PC-V |
v1.11.3 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 00008efd |
| EA-Sports FC PC-V |
v1.11.3 |
2026-05-08 |
MIPSCompileOp: Invalid instruction 72ff505f |