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 |
Spider-Man 2 |
v1.17.1 |
2024-09-07 |
Error in shader compilation: info: Compile failed.
WARNING: 0:64: 'function_call_constructor@vec4_vec4@12' : used without being initialised
WARNING: 0:68: 'function_call_constructor@uint_uint@33' : used without being initialised
WARNING: 0:88: 'function_call_constructor@vec3_vec3@99' : used without being initialised
WARNING: 0:104: 'function_call_constructor@float_float@141' : used without being initialised
WARNING: 0:234: 'function_call_constructor@vec2_vec2@575' : used without being initialised
WARNING: 5 compilation warnings.
01000000:80120b29 HWX C T N LM UVEnv Light: LightUberShader 0: c:0 t:0 1: c:0 t:0 Cull
#version 130
// Driver: Intel(R) Graphics Media Accelerator 3600 Series - GLSL 130
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80120b29 HWX C T N LM UVEnv Light: LightUberShader 0: c:0 t:0 1: c:0 t:0 Cull
in vec3 position;
in mediump vec3 normal;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform uint u_lightControl;
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 mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
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 mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
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 mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
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 vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out lowp vec3 v_color1;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
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);
vec4 ambientColor = ((u_lightControl & (1u << 0x14u)) != 0x0u) ? color0 : u_matambientalpha;
vec3 diffuseColor = ((u_lightControl & (1u << 0x15u)) != 0x0u) ? color0.rgb : u_matdiffuse;
vec3 specularColor = ((u_lightControl & (1u << 0x16u)) != 0x0u) ? color0.rgb : u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + 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;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y |
Spider-Man 2 |
v1.17.1 |
2024-09-07 |
Error in shader compilation: info: Compile failed.
WARNING: 0:64: 'function_call_constructor@vec4_vec4@12' : used without being initialised
WARNING: 0:88: 'function_call_constructor@vec3_vec3@99' : used without being initialised
WARNING: 0:104: 'function_call_constructor@float_float@141' : used without being initialised
WARNING: 3 compilation warnings.
01000000:80000b29 HWX C T N LM Light: LightUberShader Cull
#version 130
// Driver: Intel(R) Graphics Media Accelerator 3600 Series - GLSL 130
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000b29 HWX C T N LM Light: LightUberShader Cull
in vec3 position;
in mediump vec3 normal;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform uint u_lightControl;
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 mediump vec3 u_lightdir1;
uniform mediump vec2 u_lightangle_spotCoef1;
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 mediump vec3 u_lightdir2;
uniform mediump vec2 u_lightangle_spotCoef2;
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 mediump vec3 u_lightdir3;
uniform mediump vec2 u_lightangle_spotCoef3;
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 vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out lowp vec3 v_color1;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
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);
vec4 ambientColor = ((u_lightControl & (1u << 0x14u)) != 0x0u) ? color0 : u_matambientalpha;
vec3 diffuseColor = ((u_lightControl & (1u << 0x15u)) != 0x0u) ? color0.rgb : u_matdiffuse;
vec3 specularColor = ((u_lightControl & (1u << 0x16u)) != 0x0u) ? color0.rgb : u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + 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;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matsp |
Spider-Man 2 |
v1.17.1 |
2024-07-07 |
Can't draw: No current render step. Step count: 0 |
Spider-Man 2 |
v1.17.1 |
2024-06-27 |
sceMpegRingbufferPut(): invalid mpeg data |
Spider-Man 2 |
v1.17.1 |
2024-06-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=08c07750, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1 |
2024-06-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=08c07750, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.17.1 |
2024-06-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=000045b0, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.15.4 |
2024-03-17 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000137, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.17.1 |
2024-03-12 |
UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09fff610, 4, 00000000, 0) |
Spider-Man 2 |
v1.17.1 |
2024-03-12 |
Unimplemented HLE function Kprintf |
Spider-Man 2 |
v1.17.1 |
2024-03-12 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
Spider-Man 2 |
v1.17.1 |
2024-03-12 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5b0, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.17.1 |
2024-03-12 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.16.6 |
2024-02-16 |
Rendering to framebuffer offset at 04162000 +256x0 (stride 512) |
Spider-Man 2 |
v1.15.4 |
2023-10-31 |
Unexpected mpeg first timestamp: d59a080000 / 917412249600 |
Spider-Man 2 |
v1.11.3 |
2023-09-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 16 |
Spider-Man 2 |
v1.15.4 |
2023-08-01 |
__KernelStopThread: thread 419 does not exist (helper deleted) |
Spider-Man 2 |
v1.15.4 |
2023-07-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.15.4 |
2023-07-19 |
80630007=sceAtracSetData(2, 08bb6100, 00020000): atracID uses different codec type than data |
Spider-Man 2 |
v1.15.4 |
2023-07-19 |
sceGeBreak(mode=0, unknown=08babb84): unknown ptr (valid) |
Spider-Man 2 |
v1.15.2 |
2023-05-05 |
00000400=sceGeEdramSetAddrTranslation(00000000) |
Spider-Man 2 |
v1.15.2 |
2023-05-05 |
00000000=sceGeEdramSetAddrTranslation(00000000) |
Spider-Man 2 |
v1.14.4 |
2023-05-21 |
UNIMPL sceKernelStopUnloadSelfModuleWithStatus(00000001, 00000000, 00000000, 00000000, 00000000): game has likely crashed |
Spider-Man 2 |
v1.14.4 |
2023-03-25 |
80630006=sceAtracSetDataAndGetID(08df84c0, 00020000): invalid RIFF header |
Spider-Man 2 |
v1.14.4 |
2023-03-25 |
Unexpected mpeg first timestamp: 6c1ccfd6dc3 / 7429437615555 |
Spider-Man 2 |
v1.14.4 |
2023-03-25 |
Unexpected mpeg first timestamp: 263579a006 / 164105920518 |
Spider-Man 2 |
v1.14.4 |
2023-03-23 |
sceKernelVolatileMemUnlock(0) FAILED - not locked |
Spider-Man 2 |
v1.12.2 |
2023-03-04 |
80630006=sceAtracSetDataAndGetID(08d64180, 00020000): invalid RIFF header |
Spider-Man 2 |
v1.12.2 |
2023-03-04 |
80630006=sceAtracSetDataAndGetID(08d44140, 00020000): invalid RIFF header |
Spider-Man 2 |
v1.14.4 |
2023-02-26 |
00000400=sceGeEdramSetAddrTranslation(00000800) |
Spider-Man 2 |
v1.16.6 |
2023-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.16.6 |
2023-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.16.6 |
2023-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.13.2 |
2022-12-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.13.2 |
2022-10-26 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1082130432 |
Spider-Man 2 |
v1.13.2 |
2022-10-26 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 13070 |
Spider-Man 2 |
v1.13.2 |
2022-10-26 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142623468 |
Spider-Man 2 |
v1.13.2 |
2022-10-26 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145106660 |
Spider-Man 2 |
v1.13.2 |
2022-10-26 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Unknown GE command : 11ffffff |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/fb7846e2, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/f1b73d12, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/e0cf8091, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/d9392ccb, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/d2b18485, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/cc0a8bda, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/c6a8bee2, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/c56949ad, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/beb47224, already implemented in HLE. |
Spider-Man 2 |
v1.10.2 |
2022-10-22 |
Ignoring func export sceCcc/b8476cf4, already implemented in HLE. |
Spider-Man 2 |
v1.13.2 |
2022-10-21 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145634952 |
Spider-Man 2 |
v1.13.2 |
2022-10-21 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145543488 |
Spider-Man 2 |
v1.13.2 |
2022-10-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.13.2 |
2022-10-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.13.1 |
2022-09-16 |
Game install with no files / data |
Spider-Man 2 |
v1.13.2 |
2022-09-15 |
Unexpected mpeg first timestamp: ce7982040c / 886801826828 |
Spider-Man 2 |
v1.13.1 |
2022-08-27 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145851408 |
Spider-Man 2 |
v1.12.3 |
2022-07-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bf68e0, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.12.2 |
2022-07-20 |
Jump to invalid address: 035573e0 |
Spider-Man 2 |
v1.12.2 |
2022-07-20 |
Jump to invalid address: 051a89e0 |
Spider-Man 2 |
v1.12.2 |
2022-07-20 |
Jump to invalid address: 051a8bd0 |
Spider-Man 2 |
v1.12.2 |
2022-07-20 |
Jump to invalid address: 051a89a0 |
Spider-Man 2 |
v1.12.2 |
2022-07-20 |
Jump to invalid address: 03559920 |
Spider-Man 2 |
v1.12.2 |
2022-07-20 |
Jump to invalid address: 051a8c30 |
Spider-Man 2 |
v1.12.3 |
2022-07-11 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 14 |
Spider-Man 2 |
v1.10.3 |
2022-06-29 |
Unknown syscall in known module 'sceNpService': 0x78802d5f |
Spider-Man 2 |
v1.10.3 |
2022-06-29 |
Unknown syscall in known module 'sceNpService': 0x268c009d |
Spider-Man 2 |
v1.10.3 |
2022-06-29 |
Unknown syscall in known module 'sceNpService': 0x1da3e950 |
Spider-Man 2 |
v1.12.3 |
2022-06-28 |
Unexpected mpeg first timestamp: bffbfbfbfbf / 13193061580735 |
Spider-Man 2 |
v1.11.3 |
2022-06-20 |
80630011=sceAtracSetDataAndGetID(08e55880, 00000000): buffer too small |
Spider-Man 2 |
v1.16.1 |
2023-09-18 |
Unknown GetPointer 00008009 PC 08a79940 LR 08a7a29c |
Spider-Man 2 |
v1.12.3 |
2022-06-19 |
80630007=sceAtracSetData(2, 08d4b180, 00001cd0): atracID uses different codec type than data |
Spider-Man 2 |
v1.12.3 |
2022-06-19 |
80630007=sceAtracSetData(2, 08d4b180, 00007338): atracID uses different codec type than data |
Spider-Man 2 |
v1.12.3 |
2022-06-09 |
80630006=sceAtracSetHalfwayBufferAndGetID(08bfec80, 00001000, 00040000): invalid RIFF header |
Spider-Man 2 |
v1.12.3 |
2022-06-01 |
80630006=sceAtracSetDataAndGetID(08e55900, 0001474c): invalid RIFF header |
Spider-Man 2 |
v1.12.3 |
2022-06-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5f0, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.12.3 |
2022-06-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5f0, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.12.3 |
2022-05-30 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
Spider-Man 2 |
v1.10.2 |
2022-05-20 |
sceGeBreak(mode=0, unknown=09fff540): unknown ptr (valid) |
Spider-Man 2 |
v1.13.2 |
2022-09-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=1, text=1 |
Spider-Man 2 |
v1.13.2 |
2022-09-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 02a026c0 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 03887da0 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 038d2f00 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 02a0bd20 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 05c9ca20 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 03888120 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 02cac900 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 030de400 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 03888220 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 05c9c820 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 03888000 |
Spider-Man 2 |
v1.12.3 |
2022-04-21 |
Jump to invalid address: 03887e00 |
Spider-Man 2 |
v1.12.3 |
2022-04-12 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc6500, pos=0, access=1, data=2, text=2 |
Spider-Man 2 |
v1.12.3 |
2022-08-17 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 1431655765 |
Spider-Man 2 |
v1.12.3 |
2022-04-12 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=2 |
Spider-Man 2 |
v1.12.3 |
2022-04-12 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=1 |
Spider-Man 2 |
v1.12.3 |
2022-04-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147649040 |
Spider-Man 2 |
v1.12.3 |
2022-04-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146303628 |
Spider-Man 2 |
v1.12.3 |
2022-08-17 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146805524 |