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 PC - V. |
v1.11.3-1679-g195662497 |
2025-07-29 |
Unknown GetPointer 10b328b7 PC 0884d5b0 LR 0884d7d4 |
激・戦国無双 |
v1.11.3-1679-g195662497 |
2025-07-29 |
Savedata loading with detected hashmode 3 instead of file's 5 |
Yu-Gi-Oh! GX Tag Force 2 |
v1.11.3-1679-g195662497 |
2025-07-28 |
__KernelStopThread: thread 408 does not exist |
ナルティメットポータブル 無幻城の巻 |
v1.11.3-1679-g195662497 |
2025-07-23 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04044000/04088000 |
ロコロコデモ |
v1.11.3-1679-g195662497 |
2025-07-21 |
MFIC instruction hit (70020024) at 08aac100 |
Disney•Pixar Cars 2 |
v1.11.3-1679-g195662497 |
2025-07-20 |
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 r10p0-00dev0 [Revision 96995].
01f05559:00000b31 HWX T N LM Tex Light: 0: c:1 t:2 1: c:1 t:1 2: c:1 t:1 3: c:1 t:1 Cull
#version 100
// Mali-400 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;
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 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 lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
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 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 vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
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);
lowp vec4 lightSum0 = u_ambient * u_matambientalpha + 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);
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;
}
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 * u_matambientalpha.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 * 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_lightspecular1 * u_matspecular.rgb * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient1 * u_matambientalpha.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldo |
LEGO Star Wars III - The Clone Wars |
v1.11.3-1679-g195662497 |
2025-07-17 |
WriteToHardware: Invalid address bfcf4934 near PC 08000000 LR 08000000 |
BURNOUT DOMINATOR |
v1.11.3-1679-g195662497 |
2025-07-16 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04154000/04110000 |
BURNOUT DOMINATOR |
v1.11.3-1679-g195662497 |
2025-07-16 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04000000/04110000 |
BURNOUT DOMINATOR |
v1.11.3-1679-g195662497 |
2025-07-16 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04088000/04110000 |
eFootball 2024 |
v1.11.3-1679-g195662497 |
2025-07-11 |
Unknown GetPointer 00000000 PC 0884d5b0 LR 0884d7d4 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00004890): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00012e00): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00005b00): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00004100): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00010050): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00007bf8): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 0000c428): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 000034e0): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 0000eb88): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00003fd0): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00008fa8): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00005a10): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00018000): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.11.3-1679-g195662497 |
2025-07-09 |
80630007=sceAtracSetData(2, 08d4b180, 00018700): atracID uses different codec type than data |
eFootball 26 BY DIWAX GAMING |
v1.19.3 |
2025-08-01 |
Game install with no files / data |
Yu-Gi-Oh! GX Tag Force 3 |
v1.11.3-1679-g195662497 |
2025-07-07 |
WriteToHardware: Invalid address 00003308 near PC 0886c618 LR 0886c618 |
Hellboy™: The Science of Evil |
v1.11.3-1679-g195662497 |
2025-07-06 |
sceGeBreak(mode=1, unknown=09f9af80): unknown ptr (valid) |
Mortal Kombat: Unchained |
v1.11.3-1679-g195662497 |
2025-07-06 |
Failed decrypting the PRX (ret = -1, size = 5604780, psp_size = 5605120)! |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-06 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Darkstalkers Chronicle |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145269936 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145257684 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1082130432 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 13070 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142623468 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145106660 |
The Lord of the Rings: Tactics™ |
v1.11.3-1679-g195662497 |
2025-07-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
EA FC26 By Official Gameplay |
v1.8.0 |
2025-07-31 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball 26 BY DIWAX GAMING |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |
eFootball 26 BY DIWAX GAMING |
v1.9.4 |
2025-08-01 |
Savedata version requested: 3 |
eFootball 2025 by Tbose Jama |
v1.9.4 |
2025-07-16 |
Game install with no files / data |
eFootball 2025 by Tbose Jama |
v1.9.4 |
2025-07-22 |
Unknown GetPointer 00000000 PC 08824cf4 LR 088113dc |
EA FC26 By Official Gameplay |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |
eFootball PC - V. |
v1.18.1 |
2025-07-29 |
ReadFromHardware: Invalid address 00000004 near PC 08863d6c LR 08856d28 |
eFootball PC - V. |
v1.18.1 |
2025-07-29 |
WriteToHardware: Invalid address 00000004 near PC 08863d74 LR 08856d28 |
Tomb Raider: Anniversary™ |
v1.11.3-1679-g195662497 |
2025-06-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
EA FC26 By Official Gameplay |
v1.9.4 |
2025-07-23 |
Unknown GetPointer 00000000 PC 088287f0 LR 08828800 |
Mortal Kombat: Unchained |
v1.11.3-1679-g195662497 |
2025-06-20 |
__KernelStopThread: thread 1235 does not exist |
EA FC26 By Official Gameplay |
v1.9.4 |
2025-08-01 |
Savedata version requested: 3 |
Mortal Kombat: Unchained |
v1.11.3-1679-g195662497 |
2025-06-20 |
__KernelStopThread: thread 815 does not exist |
eFootball 2025 by MP |
v1.9.4 |
2025-07-31 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
Def Jam® Fight For NY™: The Takeover |
v1.11.3-1679-g195662497 |
2025-06-17 |
sceDmacMemcpy(dest=0971dd40, src=08400000, size=203968): overlapping read |
WWE SmackDown vs. RAW 2011 |
v1.11.3-1679-g195662497 |
2025-06-16 |
Unknown instruction 00000030 at 08f91728 |
WWE SmackDown vs. RAW 2011 |
v1.11.3-1679-g195662497 |
2025-06-16 |
Unknown instruction 00020001 at 08f91720 |
WWE SmackDown vs. RAW 2011 |
v1.11.3-1679-g195662497 |
2025-06-16 |
Unknown instruction 00000030 at 08f91710 |
WWE SmackDown vs. RAW 2011 |
v1.11.3-1679-g195662497 |
2025-06-16 |
Unknown instruction 00100005 at 08f91700 |
eFootball 2025 by Tbose Jama |
v1.9.4 |
2025-08-01 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
eFootball 2025 by Tbose Jama |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |
eFootball 2025 by MP |
v1.9.4 |
2025-07-22 |
MIPSCompileOp: Invalid instruction 01010101 |
BETEGAMING12 |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |
BETEGAMING12 |
v1.9.4 |
2025-08-01 |
Savedata version requested: 3 |
eFootball CESAR - PATCH |
v1.11.3-1679-g195662497 |
2025-06-13 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3328, pos=0, access=1, data=1, text=1 |
eFootball CESAR - PATCH |
v1.11.3-1679-g195662497 |
2025-06-13 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
eFootball 2025 by MP |
v1.9.4 |
2025-07-31 |
Savedata version requested on save: 3 |
eFootball 2025 by MP |
v1.9.4 |
2025-08-01 |
Savedata version requested: 3 |
Yu-Gi-Oh! GX Tag Force |
v1.11.3-1679-g195662497 |
2025-06-14 |
__KernelStopThread: thread 986 does not exist |
Dragon Ball Z: Tenkaichi Tag Team |
v1.11.3-1679-g195662497 |
2025-06-07 |
ReadFromHardware: Invalid address 97513ef7 near PC 97513ef7 LR 08901e5c |
WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.11.3-1679-g195662497 |
2025-06-06 |
80630007=sceAtracSetData(2, 08d4b180, 00003828): atracID uses different codec type than data |
Def Jam® Fight For NY™: The Takeover |
v1.11.3-1679-g195662497 |
2025-06-02 |
sceKernelRegisterSubIntrHandler(30, 0, 08805a28, 000006e4): duplicate handler |
eFootball 2025 by Tbose Jama |
v1.9.4 |
2025-08-01 |
Savedata version requested: 3 |
Samurai Warriors®: State of War |
v1.11.3-1679-g195662497 |
2025-05-26 |
Savedata loading with detected hashmode 3 instead of file's 5 |
HEROES' VS |
v1.11.3-1679-g195662497 |
2025-05-19 |
__KernelStopThread: thread 308 does not exist |
HEROES' VS |
v1.11.3-1679-g195662497 |
2025-05-19 |
Could not setup streams, unexpected stream count: 13462 |
HEROES' VS |
v1.11.3-1679-g195662497 |
2025-05-19 |
Unexpected mpeg first timestamp: 5579a080000 / 5873804509184 |
Toy Story 3 |
v1.11.3-1679-g195662497 |
2025-05-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=08821c30, pos=0, access=1, data=1, text=1 |
WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE |
v1.18.1 |
2025-06-06 |
80630007=sceAtracSetData(2, 08d4b180, 0000f790): atracID uses different codec type than data |
Pro Evolution Soccer 2012 |
v1.11.3-1679-g195662497 |
2025-05-14 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
Pro Evolution Soccer 2012 |
v1.11.3-1679-g195662497 |
2025-05-14 |
Rendering to framebuffer offset: 04162000 +256x0 |
Pro Evolution Soccer 2012 |
v1.11.3-1679-g195662497 |
2025-05-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a6946c, pos=0, access=1, data=2, text=2 |
Pro Evolution Soccer 2012 |
v1.11.3-1679-g195662497 |
2025-05-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a6946c, pos=0, access=1, data=1, text=1 |
はじめの一歩 PORTABLE VICTORIOUS SPIRITS |
v1.11.3-1679-g195662497 |
2025-05-10 |
__KernelStopThread: thread 293 does not exist |
FIFA 12 |
v1.11.3-1679-g195662497 |
2025-05-08 |
FBO created from existing depthbuffer as color, 04000000/04128000 and 04178000/04000000 |
PATCH SPARTAN11 |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |
PATCH SPARTAN11 |
v1.9.4 |
2025-07-31 |
Unknown GetPointer 00000000 PC 08816148 LR 0881615c |
PATCH SPARTAN11 |
v1.9.4 |
2025-08-01 |
Savedata version requested: 3 |
eFootball RB - V. |
v1.9.4 |
2025-08-01 |
sceDmacMemcpy(dest=040cc000, src=086ce940, size=1251008): overlapping read |
Aces of War |
v1.11.3-1679-g195662497 |
2025-04-30 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144855016 |
Aces of War |
v1.11.3-1679-g195662497 |
2025-04-30 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146694408 |
Aces of War |
v1.11.3-1679-g195662497 |
2025-04-30 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145504184 |
Aces of War |
v1.11.3-1679-g195662497 |
2025-04-30 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145559772 |
Aces of War |
v1.11.3-1679-g195662497 |
2025-04-30 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145551420 |
Army of TWO™: The 40th Day |
v1.11.3-1679-g195662497 |
2025-04-28 |
sceDmacMemcpy(dest=041c0400, src=0976afe0, size=9216): overlapping read |
eFootball RB - V. |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |
Transformers: The Game |
v1.11.3-1679-g195662497 |
2025-04-25 |
__KernelStopThread: thread 1219 does not exist |
Transformers: The Game |
v1.11.3-1679-g195662497 |
2025-04-24 |
__KernelStopThread: thread 1005 does not exist |
周刊少年大乱斗 集结!顶上大决战 |
v1.11.3-1679-g195662497 |
2025-04-07 |
Ignoring invalid video decode address 09145b00/9fff680 |
周刊少年大乱斗 集结!顶上大决战 |
v1.11.3-1679-g195662497 |
2025-04-07 |
Ignoring invalid video decode address 091cdb40/9fff680 |
Toy Story 3 |
v1.11.3-1679-g195662497 |
2025-04-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08af0100, pos=0, access=1, data=2, text=2 |
eFootball RB - V. |
v1.9.4 |
2025-08-01 |
Savedata version requested on save: 3 |