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 |
| Need For Speed™ ProStreet |
v1.19.1 |
2025-10-08 |
Error in shader compilation: info: 0:1: P0001: Unknown preprocessing directive 'ver�n'
0:1: L0001: Unknown character ''(30)
0:1: L0001: Unknown character '�'(191)
0:8: L0001: Storage qualifier not allowed in GLSL ES version 100
01000000:80000929 HWX C T LM Light: LightUberShader Cull
#ver�n�#version 320 es
// Driver: Mali-G31 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80050928 HWX C T TexProjUV UVMtx Light: LightUberShader Cull
in vec3 position;
in vec2 texcoord;
in 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 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 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(0.0, 0.0, 1.0, 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_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = |
| Need For Speed™ ProStreet |
v1.19.1 |
2025-10-08 |
Error in shader compilation: info: 0:1: P0001: Unknown preprocessing directive 'ver'
0:1: L0001: Unknown character '@'(64)
0:1: L0001: Unknown character ''(30)
0:1: L0001: Unknown character '�'(191)
0:8: L0001: Storage qualifier not allowed in GLSL ES version 100
01000000:80050929 HWX C T LM TexProjUV UVMtx Light: LightUberShader Cull
#ver@m�#version 320 es
// Driver: Mali-G31 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000929 HWX C T LM Light: LightUberShader Cull
in vec3 position;
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(0.0, 0.0, 1.0, 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_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && ldot >= 0.0) {
if (u_matspe |
| Need For Speed™ ProStreet |
v1.11 |
2025-09-12 |
ReadFromHardware: Invalid address 00000001 near PC 00000001 LR 088c1380 |
| Need For Speed™ ProStreet |
v1.17.1 |
2025-03-04 |
Normal projection mapping without normal? |
| Need For Speed™ ProStreet |
v1.17.1-980-gabaea0197b |
2024-08-28 |
Unexpected mpeg first timestamp: 3ed42db6a09 / 4317563808265 |
| Need For Speed™ ProStreet |
v1.18.1 |
2025-09-07 |
Can't draw: No current render step. Step count: 0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2024-02-01 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
| Need For Speed™ ProStreet |
v1.10.3 |
2024-02-01 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2024-01-02 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=08228644, firstSym=082284c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228654, firstSym=082284e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228658, firstSym=082284e8, varData=00000000, extra=00000000
|
| Need For Speed™ ProStreet |
v1.10.3 |
2024-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145042384 |
| Need For Speed™ ProStreet |
v1.10.3 |
2024-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771644 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-11-20 |
Render to texture with different strides 512 != 192 |
| Need For Speed™ ProStreet |
v1.16.6 |
2023-11-17 |
Block transfer invalid: 00000000/0 -> 040d4000/0, 1024x1024x2 (0,0)->(0,0) |
| Need For Speed™ ProStreet |
v1.16.6 |
2023-11-17 |
Unknown GetPointer 00000000 PC 088bff18 LR 088bff2c |
| Need For Speed™ ProStreet |
v1.16.6 |
2023-11-17 |
Unknown GetPointerWrite 00000000 PC 088bff18 LR 088bff2c |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-29 |
sceKernelCreateThread(name=PSP_Sound_Manager): unsupported attributes 00000002 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-07 |
Unusual bezier/spline vtype: 12000312, morph: 0, bones: 1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-07 |
Bad index address 00000000! |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-07 |
Unusual bezier/spline vtype: 12000380, morph: 0, bones: 1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-07 |
BlockTransfer: Bad destination transfer address 93c58780! |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-08-07 |
Unknown GE command : ef5d3fff |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-14 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNp': 0xbb069a87 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNp': 0xa0be3c4b |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNp': 0x633b5f71 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0xfc0bc8db |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0xbe22eea3 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0xa01443aa |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x788f2b5e |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x75dacb57 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x72a1ce0d |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x66c64821 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x58251346 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x506c318d |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x4e851b10 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpService': 0x174d0d24 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpAuth': 0xcd86a656 |
| Need For Speed™ ProStreet |
v1.10.3 |
2023-07-04 |
Unknown syscall in known module 'sceNpAuth': 0x3f1c1f70 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-05-26 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145759344 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-03-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-03-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-03-22 |
80020001=sceKernelCreateMutex(): invalid name |
| Need For Speed™ ProStreet |
v1.14.4 |
2023-02-10 |
__KernelStopThread: thread 459 does not exist (ApctlThread deleted) |
| Need For Speed™ ProStreet |
v1.14.4 |
2023-02-10 |
__KernelStopThread: thread 459 does not exist (ApctlThread stopped) |
| Need For Speed™ ProStreet |
v1.13.1 |
2024-07-16 |
Failed to read valid video stream data from header |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-03-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-03-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-11-19 |
Crazy nidData address 258e6400, skipping entire module |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-11-19 |
Unexpected module entry size 0 |
| Need For Speed™ ProStreet |
v1.11.3 |
2022-09-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=0000001c, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.11.3 |
2022-09-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08a1d400, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02032240 PC 09fff4e4 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 037a2540 PC 09fff4e0 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02d71a00 PC 09fff4dc LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02021780 PC 09fff4d0 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 037a25f0 PC 09fff4cc LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02031ff0 PC 09fff4c8 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 037a2540 PC 09fff4c0 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02240000 PC 09fff4ac LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02078ad0 PC 09fff4a8 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02240000 PC 09fff4a4 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 023da3e0 PC 09fff4a0 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02240000 PC 09fff49c LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 02d72e80 PC 09fff498 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 03753740 PC 09fff494 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 03753540 PC 09fff490 LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-14 |
Jump to invalid address: 021ef040 PC 09fff48c LR 09fff3c0 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-09 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-09-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
| Need For Speed™ ProStreet |
v1.11.3 |
2022-04-30 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142957872 |
| Need For Speed™ ProStreet |
v1.11.3 |
2022-09-09 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-04-27 |
80630006=sceAtracSetData(2, 08d13140, 00038000): invalid RIFF header |
| Need For Speed™ ProStreet |
v1.10.3 |
2022-04-27 |
sceGeBreak(mode=0, unknown=08d098b8): unknown ptr (valid) |
| Need For Speed™ ProStreet |
v1.13.2 |
2023-07-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
| Need For Speed™ ProStreet |
v1.12.3 |
2022-09-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771616 |
| Need For Speed™ ProStreet |
v1.12.3 |
2022-01-05 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.11.3 |
2021-10-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5048, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.11.3 |
2021-10-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5048, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.12.3 |
2022-01-23 |
Video out requested, not supported: mode=0 size=0,0 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-08-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.11.3 |
2021-08-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145851408 |
| Need For Speed™ ProStreet |
v1.13.1 |
2022-09-07 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
| Need For Speed™ ProStreet |
v1.11.3 |
2021-07-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144940664 |
| Need For Speed™ ProStreet |
v1.11.3 |
2021-07-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146133816 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-05-26 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144918352 |
| Need For Speed™ ProStreet |
v1.12.3 |
2023-05-26 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144907468 |
| Need For Speed™ ProStreet |
v1.11.3 |
2024-01-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144316544 |
| Need For Speed™ ProStreet |
v1.11.3 |
2024-01-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.11.3 |
2024-01-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.13.1 |
2022-09-07 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144918396 |
| Need For Speed™ ProStreet |
v1.13.1 |
2022-09-07 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144907512 |
| Need For Speed™ ProStreet |
v1.13.1 |
2024-01-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 153291632 |
| Need For Speed™ ProStreet |
v1.13.1 |
2022-09-07 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144316588 |
| Need For Speed™ ProStreet |
v1.13.1 |
2024-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771664 |
| Need For Speed™ ProStreet |
v1.13.1 |
2024-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142702700 |
| Need For Speed™ ProStreet |
v1.13.1 |
2022-09-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=2, text=2 |
| Need For Speed™ ProStreet |
v1.13.1 |
2022-09-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=1, text=1 |
| Need For Speed™ ProStreet |
v1.11.3 |
2021-05-12 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=08228844, firstSym=082286c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228854, firstSym=082286e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228858, firstSym=082286e8, varData=00000000, extra=00000000
|
| Need For Speed™ ProStreet |
v1.11.3 |
2024-01-02 |
Crazy varData address 01011006, skipping rest of module |