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 |
Pirates of the Caribbean: At World's End |
v1.17.1 |
2024-04-23 |
Unexpected mpeg first timestamp: fff21ce8040 / 17588458258496 |
Pirates of the Caribbean: At World's End |
v1.16.6 |
2023-11-27 |
Can't draw: No current render step. Step count: 0 |
Pirates of the Caribbean: At World's End |
v1.14.4 |
2023-03-17 |
UNIMPL sceUtilityGameSharingInitStart(090d6c64) |
Pirates of the Caribbean: At World's End |
v1.14.4 |
2023-03-17 |
UNIMPL sceUtilityGameSharingInitStart(08f86274) |
Pirates of the Caribbean: At World's End |
v1.11.2 |
2023-03-03 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2023-02-27 |
Unimplemented HLE function Kprintf |
Pirates of the Caribbean: At World's End |
v1.14.1 |
2023-02-10 |
UI scissor out of bounds in MainScreen: 1540,7-712,398 / 1280,720 |
Pirates of the Caribbean: At World's End |
v1.14.1 |
2023-02-10 |
UI scissor out of bounds in MainScreen: 0,48-1518,357 / 1280,720 |
Pirates of the Caribbean: At World's End |
v1.14.1 |
2023-02-10 |
UI scissor out of bounds in MainScreen: 0,0-1518,405 / 1280,720 |
Pirates of the Caribbean: At World's End |
v1.14.1 |
2023-02-10 |
UI scissor out of bounds in MainScreen: 0,0-1518,48 / 1280,720 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-02-08 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 149518448 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-02-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151465432 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-02-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143642516 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-02-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143634596 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-02-08 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=0880defc, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-02-08 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.14.1 |
2023-02-08 |
UI scissor out of bounds in GameSettingsScreen: 182,0-813,588 / 960,588 |
Pirates of the Caribbean: At World's End |
v1.14.1 |
2023-02-08 |
UI scissor out of bounds in GameSettingsScreen: 182,0-813,562 / 960,562 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-01-06 |
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 r8p1-00rel0 [Revision 96995].
01700444:00050b39 HWX C T N LM Tex TexProjUV UVMtx Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 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;
attribute lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform mediump mat4 u_texmtx;
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 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 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);
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;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = mul(vec4(texcoord.xy, 0.0, 1.0), u_texmtx).xyz * vec3(u_uvscaleoffset.xy, 1.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) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-01-06 |
Unimplemented HLE function sceAudioInputInitEx |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-01-06 |
sceGeBreak(mode=0, unknown=08f6c8fc): unknown ptr (valid) |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-01-06 |
sceKernelLoadModule: unsupported options size=00000014, flags=08e3bde8, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-01-06 |
Unimplemented HLE function sceUtilityGetNetParam |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-12-12 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d20000, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:17: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
if (v.a < 0.002) discard;
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (floor((z * 16776960.000000) - (1.0 / 2.0)) + (1.0 / 2.0)) * (1.0 / 16776960.000000);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:10: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
varying vec4 v_color0;
void main() {
vec4 v = v_color0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (1.0/65535.0) * floor(z * 65535.0);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:18: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
float aResult = texture2D(testtex, vec2(v.a * 0.996094 + 0.001953, 0)).a;
if (aResult < 0.5) discard;
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (1.0/65535.0) * floor(z * 65535.0);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:15: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (1.0/65535.0) * floor(z * 65535.0);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:17: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (1.0/65535.0) * floor(z * 65535.0);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:18: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
float aResult = texture2D(testtex, vec2(v.a * 0.996094 + 0.001953, 0)).a;
if (aResult < 0.5) discard;
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (floor((z * 16776960.000000) - (1.0 / 2.0)) + (1.0 / 2.0)) * (1.0 / 16776960.000000);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:17: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
if (v.a < 0.002) discard;
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (1.0/65535.0) * floor(z * 65535.0);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.4.2 |
2022-11-23 |
Error in shader compilation: info: Compile failed.
ERROR: 0:17: 'gl_FragDepth' : undeclared identifier
1 compilation errors. No code generated.
/ code: #version 100
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
varying vec4 v_color0;
varying highp vec3 v_texcoord;
void main() {
vec4 t = texture2D(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
v.rgb = v.rgb * 2.0;
gl_FragColor = v;
highp float z = gl_FragCoord.z;
z = (floor((z * 16776960.000000) - (1.0 / 2.0)) + (1.0 / 2.0)) * (1.0 / 16776960.000000);
gl_FragDepth = z;
}
|
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145635464 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145544000 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 16 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 34520 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143964328 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2022-10-21 |
UNIMPL sceKernelStopUnloadSelfModuleWithStatus(00000001, 00000000, 00000000, 00000000, 00000000): game may have crashed |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-09-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 408 |
Pirates of the Caribbean: At World's End |
v1.13.2 |
2023-01-06 |
BREAK instruction hit |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-09-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 464 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-09-11 |
sceGeBreak(mode=0, unknown=09fff520): unknown ptr (valid) |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-09-11 |
sceGeBreak(mode=0, unknown=09fff420): unknown ptr (valid) |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-09-11 |
sceGeBreak(mode=0, unknown=09fff410): unknown ptr (valid) |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-09-11 |
sceGeBreak(mode=0, unknown=09fff4e0): unknown ptr (valid) |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-29 |
Unknown GetPointer 00000000 PC 089e16b4 LR 089e16b4 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -559038737 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146162456 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 102464 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145477076 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 2568 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143464896 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-08-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148424880 |
Pirates of the Caribbean: At World's End |
v1.13.1 |
2022-08-11 |
Unsupported AND logic op: 2 |
Pirates of the Caribbean: At World's End |
v1.13.1 |
2022-08-11 |
Attempted invert for logic op: 8 |
Pirates of the Caribbean: At World's End |
v1.13.1 |
2022-09-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.17.1 |
2024-10-13 |
sceNetAdhocMatchingInit(131072) at 089e11fc |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-07-23 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc68c0, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-07-10 |
Unexpected mpeg first timestamp: ab1522e6313 / 11756704260883 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-06-26 |
80630007=sceAtracSetData(0, 08d19800, 00010000): atracID uses different codec type than data |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2024-04-16 |
Savedata version requested on save: 3 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-06-17 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08b62c38, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-06-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771616 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-06-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-06-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000136, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2022-05-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000002, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2022-05-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5c8, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2022-05-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5c8, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-05-22 |
MFIC instruction hit (70020024) at 08908ed8 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-05-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d11560, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-05-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=08857c2c, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-05-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b680, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2022-03-19 |
ReadFromHardware: Invalid address bf80419a near PC bf80419a LR bf80419a |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-03-16 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167508176 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b4b0, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelCreateThread(name=update_thread): unsupported attributes a0000000 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-12-12 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
Pirates of the Caribbean: At World's End |
v1.10.3 |
2022-02-10 |
80000107=sceDisplaySetFrameBuf(00000000, 512, 3, 0): must change latched framebuf first |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-06-18 |
Savedata version requested: 3 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2021-12-30 |
sceMpegRingbufferPut(): invalid mpeg data |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2021-12-16 |
sceGeListEnqueue: invalid address 40000000 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2021-12-14 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145851408 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2021-12-06 |
Unexpected mpeg first timestamp: 55555555555 / 5864062014805 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-10-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147649040 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-10-08 |
Unknown GetPointer 00000000 PC 08815ef4 LR 08000020 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-07-26 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-09-14 |
80630006=sceAtracSetData(2, 08d13140, 00038000): invalid RIFF header |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872 |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
Pirates of the Caribbean: At World's End |
v1.10.3 |
2021-09-11 |
RET: Stack empty! |
Pirates of the Caribbean: At World's End |
v1.12.3 |
2022-02-12 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-08-22 |
Jump to invalid address: 03e40000 PC 08021568 LR 08000030 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-08-22 |
Branch in RSRTComp delay slot at 080212b0 in block starting at 080212ac |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-08-22 |
Branch in RSRTComp delay slot at 080212a4 in block starting at 080212a4 |
Pirates of the Caribbean: At World's End |
v1.11.3 |
2021-08-22 |
Branch in RSRTComp delay slot at 080212a0 in block starting at 08021268 |