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 |
The Sims™ 2 Pets |
v1.10.2 |
2024-12-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
The Sims™ 2 Pets |
v1.9.0 |
2024-11-08 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 089e72a4 |
The Sims™ 2 Pets |
v1.15.4 |
2024-08-19 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 0888ce10 |
The Sims™ 2 Pets |
v1.17.1 |
2024-02-23 |
Unknown GetPointer 00000001 PC 08b255cc LR 08ae61a0 |
The Sims™ 2 Pets |
v1.17.1 |
2024-02-23 |
Unknown GetPointerWrite 00000000 PC 08b255cc LR 08af0c38 |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
Jump to invalid address: 07ff9280 PC 09ffe298 LR 09ffe260 |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
MIPSCompileOp: Invalid instruction 00000001 |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
MIPSCompileOp: Invalid instruction 000c6b85 |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
MIPSCompileOp: Invalid instruction 00343f5e |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
Jump to invalid address: 0500cd00 PC 09ffe268 LR 09ffe260 |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
Unknown GetPointer 00000000 PC 0881c21c LR 0881c6e4 |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
The Sims™ 2 Pets |
v1.15.3 |
2023-07-16 |
No DL ID available to enqueue |
The Sims™ 2 Pets |
v1.15.3 |
2023-08-20 |
Unknown GetPointerWrite 00000000 PC 08af0c30 LR 08af0c38 |
The Sims™ 2 Pets |
v1.15.3 |
2023-07-13 |
Unknown GetPointerWrite 00000000 PC 089d1630 LR 089d1638 |
The Sims™ 2 Pets |
v1.13.1 |
2023-01-07 |
Failed to read valid video stream data from header |
The Sims™ 2 Pets |
v1.13.2 |
2023-01-11 |
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 r6p0-01rel1 [Revision 96995].
01f54444:00000330 HWX N Tex Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 MatUp:5 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;
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 vec3 u_matdiffuse;
uniform lowp vec4 u_matspecular;
uniform lowp vec3 u_matemissive;
uniform lowp vec4 u_matambientalpha;
uniform highp vec4 u_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
varying lowp vec4 v_color0;
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);
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 * u_matdiffuse) * max(ldot, 0.0);
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);
lightSum0.rgb += (u_lightambient1 * u_matambientalpha.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 * u_matdiffuse) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * u_matambientalpha.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 * u_matdiffuse) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * u_matambientalpha.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_texcoord = splat3(0.0);
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
if (u_cullRangeMin.w <= 0.0) {
if (projPos.z < u_cullRangeMin.z || projPos.z > u_cullRangeMax.z) {
|
The Sims™ 2 Pets |
v1.13.2 |
2023-01-04 |
Unknown GetPointerWrite 00000009 PC 08af0c04 LR 08af0c38 |
The Sims™ 2 Pets |
v1.13.2 |
2022-12-27 |
Unknown GetPointerWrite 00000000 PC 08b04dbc LR 08b04e6c |
The Sims™ 2 Pets |
v1.13.2 |
2022-12-27 |
Unknown GetPointerWrite 00000000 PC 089d1624 LR 089d1638 |
The Sims™ 2 Pets |
v1.13.2 |
2022-11-03 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
The Sims™ 2 Pets |
v1.13.2 |
2022-12-28 |
Unknown GetPointerWrite 00000000 PC 08af0c04 LR 08af0c38 |
The Sims™ 2 Pets |
v1.12.3 |
2022-07-27 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 159908552 |
The Sims™ 2 Pets |
v1.12.3 |
2022-06-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
The Sims™ 2 Pets |
v1.12.3 |
2022-06-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146185776 |
The Sims™ 2 Pets |
v1.12.3 |
2022-06-04 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
The Sims™ 2 Pets |
v1.12.3 |
2022-06-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
The Sims™ 2 Pets |
v1.12.3 |
2022-06-04 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |
The Sims™ 2 Pets |
v1.12.3 |
2022-05-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 34520 |
The Sims™ 2 Pets |
v1.12.3 |
2022-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
The Sims™ 2 Pets |
v1.12.3 |
2022-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
The Sims™ 2 Pets |
v1.12.3 |
2021-11-09 |
Unknown GetPointer 00000000 PC 089d0ea8 LR 089d0f70 |
The Sims™ 2 Pets |
v1.12.2 |
2021-10-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2 |
The Sims™ 2 Pets |
v1.12.2 |
2021-10-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
The Sims™ 2 Pets |
v1.12.2 |
2021-10-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=1, text=1 |
The Sims™ 2 Pets |
v1.11.3 |
2021-09-06 |
Failed decrypting the PRX (ret = -1, size = 5148317, psp_size = 5148656)! |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-19 |
WriteToHardware: Invalid address 00000010 near PC 08a71594 LR 08a7153c |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-19 |
ReadFromHardware: Invalid address 00000010 near PC 08a71588 LR 08a7153c |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-19 |
ReadFromHardware: Invalid address 00000000 near PC 08b03df0 LR 08b04154 |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-19 |
WriteToHardware: Invalid address 00002000 near PC 08b03844 LR 08b04aa0 |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-19 |
ReadFromHardware: Invalid address 0000001c near PC 08b03a50 LR 08b04d98 |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-19 |
WriteToHardware: Invalid address 00000018 near PC 08b04d24 LR 08b04d18 |
The Sims™ 2 Pets |
v1.11.2 |
2021-05-12 |
80000107=sceDisplaySetFrameBuf(04000000, 512, 3, 0): must change latched framebuf first |
The Sims™ 2 Pets |
v1.11.2 |
2021-05-12 |
80000107=sceDisplaySetFrameBuf(04088000, 512, 3, 0): must change latched framebuf first |
The Sims™ 2 Pets |
v1.11.2 |
2021-05-12 |
Jump to invalid address: 00000000 |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-02 |
Unknown GetPointer 00000000 PC 08a519e8 LR 08a519e4 |
The Sims™ 2 Pets |
v1.11.3 |
2021-05-02 |
Unknown GetPointer 00000000 PC 08b0e018 LR 08a96d5c |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x168b8de5 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpAuth': 0xcd86a656 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpAuth': 0x3f1c1f70 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNp': 0xbb069a87 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNp': 0x7e0864df |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0xbe22eea3 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0xa670d3a3 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0xa01443aa |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x90e4db6a |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x78802d5f |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x66c64821 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x58251346 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x5494274b |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x506c318d |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x4e851b10 |
The Sims™ 2 Pets |
v1.10.3 |
2021-01-29 |
Unknown syscall in known module 'sceNpService': 0x1da3e950 |
The Sims™ 2 Pets |
v1.9.4 |
2020-03-10 |
Savedata version requested: 3 |
The Sims™ 2 Pets |
v1.9.4 |
2020-03-10 |
Savedata version requested on save: 3 |
The Sims™ 2 Pets |
v1.9.4 |
2021-09-01 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
The Sims™ 2 Pets |
v1.9.4 |
2021-12-20 |
Unknown GetPointer 00000000 PC 089d2908 LR 08000030 |
The Sims™ 2 Pets |
v1.9.4 |
2021-10-15 |
Unknown GetPointer 00000000 PC 08a56ec8 LR 08000020 |
The Sims™ 2 Pets |
v1.9.4 |
2024-12-21 |
Render to texture with incompatible formats 3 != 0 at 04000000 |
The Sims™ 2 Pets |
v1.8.0 |
2021-05-12 |
UNIMPL sceKernelStopUnloadSelfModuleWithStatus(00000001, 00000000, 00000000, 00000000, 00000000): game has likely crashed |
The Sims™ 2 Pets |
v1.9.4 |
2022-10-10 |
Unknown GetPointer 00000000 PC 089d1624 LR 089d1638 |
The Sims™ 2 Pets |
v1.9.4 |
2023-01-30 |
Unknown GetPointer 00000000 PC 08af0c04 LR 08af0c38 |
The Sims™ 2 Pets |
v1.2.2 |
2017-10-02 |
Unknown GE command : b65be27c |
The Sims™ 2 Pets |
v1.9.4 |
2024-08-19 |
BREAK instruction hit |
The Sims™ 2 Pets |
v1.7.5 |
2024-12-30 |
Render to texture with incompatible formats 3 != 0 at 00000000 |
The Sims™ 2 Pets |
v1.9.4 |
2025-02-05 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146882120 |