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™ Underground Rivals |
v1.10.3 |
2021-02-20 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-20 |
Unknown syscall in known module 'SysMemForKernel': 0x7b749390 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-20 |
Unknown syscall in known module 'SysMemForKernel': 0xeb7a74db |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-20 |
Unknown syscall in known module 'ThreadManForKernel': 0x383f7bcc |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-20 |
Unknown syscall in known module 'ThreadManForKernel': 0xed1410e0 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-20 |
Unknown syscall in known module 'ThreadManForKernel': 0xc07bb470 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-20 |
Unknown syscall in known module 'ThreadManForKernel': 0x812346e4 |
Need For Speed™ Underground Rivals |
v1.11.2 |
2021-02-19 |
Error in shader program link: info: Link failed because of missing fragment shader.
fs: 00000000:00000022 Tex TexAlpha TFuncMod
#version 320 es
#extension GL_ARM_shader_framebuffer_fetch : require
// Mali-T760 - GLSL 320
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
fragColor0 = v;
}
vs: 00000000:00000038 C Tex Cull
#version 320 es
// Mali-T760 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
vec4 outPos = mul(u_proj, vec4(position.xyz, 1.0));
vec3 projPos = outPos.xyz / outPos.w;
if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Need For Speed™ Underground Rivals |
v1.11.2 |
2021-02-19 |
Error in shader program link: info: L0007 Fragment shader uses a varying v_texcoord that has not been declared in the vertex shader.
fs: 00000000:00000082 Tex TClamp TFuncMod
#version 320 es
#extension GL_ARM_shader_framebuffer_fetch : require
// Mali-T760 - GLSL 320
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
uniform vec4 u_texclamp;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec2 fixedcoord = vec2(mod(v_texcoord.x, u_texclamp.x), mod(v_texcoord.y, u_texclamp.y));
vec4 t = texture(tex, fixedcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
fragColor0 = v;
}
vs: 00000000:00000938 HWX C T Tex Cull
#version 320 es
// Mali-T760 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
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 lowp vec4 u_matambientalpha;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
void main() {
vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz;
mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
v_color0 = color0;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
vec3 projPos = outPos.xyz / outPos.w;
if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Need For Speed™ Underground Rivals |
v1.11.2 |
2021-02-19 |
Error in shader program link: info: L0007 Fragment shader uses a varying v_texcoord that has not been declared in the vertex shader.
fs: 00000000:00000002 Tex TFuncMod
#version 320 es
#extension GL_ARM_shader_framebuffer_fetch : require
// Mali-T760 - GLSL 320
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
fragColor0 = v;
}
vs: 00000000:00000938 HWX C T Tex Cull
#version 320 es
// Mali-T760 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
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 lowp vec4 u_matambientalpha;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
void main() {
vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz;
mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
v_color0 = color0;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
vec3 projPos = outPos.xyz / outPos.w;
if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
Need For Speed™ Underground Rivals |
v1.11.2 |
2021-02-17 |
WriteToHardware: Invalid address 00002260 near PC 08832948 LR 08833318 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 0547a460 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05479ee0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05479960 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054793e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05478e60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054788e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05478360 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05477de0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05477860 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054772e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05476d60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054767e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05476260 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05475ce0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05475760 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054751e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05474c60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054746e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05474160 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05473be0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05473660 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054730e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05472b60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054725e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05472060 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05471ae0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05471560 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05470fe0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 05470a60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 054704e0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 0546ff60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
MIPSCompileOp: Invalid instruction 00002c05 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 07dd3f80 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
MIPSCompileOp: Invalid instruction 00005d01 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 038bcd80 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
An uneaten prefix at end of block: 0930f378 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Branch in Jump delay slot at 08e2f374 in block starting at 08e2f368 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Branch in Jump delay slot at 08e2f374 in block starting at 08e2f360 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 0546fe80 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Branch in Jump delay slot at 08e2f374 in block starting at 08e2f308 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 038bcde0 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 038bcd7c |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Branch in Jump delay slot at 08e2f35c in block starting at 08e2f308 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Jump to invalid address: 038bcd60 |
Need For Speed™ Underground Rivals |
v1.11 |
2021-02-17 |
Branch in Jump delay slot at 08e2f358 in block starting at 08e2f308 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-14 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-13 |
80630006=sceAtracSetData(2, 08d13140, 00038000): invalid RIFF header |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-10 |
Ignoring func export scePsmfPlayer/2beb1569, already implemented in HLE. |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-10 |
Ignoring func export scePsmfPlayer/235d8787, already implemented in HLE. |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-10 |
Ignoring func export scePsmfPlayer/1e57a8e7, already implemented in HLE. |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=2, text=2 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-09 |
Module linking debug info:
sceNetIfhandle_driver ver=0000, flags=0009, size=5, numVars=0, numFuncs=10, nidData=0822ef14, firstSym=0822ec1c, varData=00000000, extra=00000000
sceMemab_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=11, nidData=0822eee8, firstSym=0822ebc4, varData=00000000, extra=00000000
SysclibForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=3, nidData=0822ee98, firstSym=0822eb24, varData=00000000, extra=00000000
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=17, nidData=0822eea4, firstSym=0822eb3c, varData=00000000, extra=00000000
InterruptManagerForKernel ver=0000, flags=0009, size=5, numVars=0, numFuncs=2, nidData=0822ee90, firstSym=0822eb14, varData=00000000, extra=00000000
|
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=1, text=1 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-07 |
80630007=sceAtracSetData(2, 08d4b180, 00018700): atracID uses different codec type than data |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-02-05 |
Rendering to framebuffer offset: 04162000 +256x0 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-27 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 149305684 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceSAScore with version 0103, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceAudiocodec_Driver with version 0103, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceFont_Library with version 0101, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceMpegbase_Driver with version 0103, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceVideocodec_Driver with version 0103, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceMpeg_library with version 0103, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.4-2-g648bc5d |
2021-01-23 |
Loading module sceATRAC3plus_Library with version 0102, devkit 00000000 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-23 |
Render to texture with different strides 1024 != 512 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-23 |
Render to area containing texture at 04161800 +128x0 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-23 |
Ignoring possible render to texture at 04161800 +0x64 / 480x272 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-23 |
Rendering to framebuffer offset: 04161800 +64x0 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-22 |
80000107=sceDisplaySetFrameBuf(44000000, 512, 0, 0): must change latched framebuf first |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d74120, pos=0, access=1, data=1, text=1 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-15 |
An uneaten prefix at end of block: 08927e70 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-13 |
WriteToHardware: Invalid address 00002260 near PC 0880dd18 LR 0880dd18 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-11 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167508176 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144918396 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144907512 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-08 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144316588 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=2, text=2 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=1, text=1 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-07 |
Ignoring possible render to texture at 0419e000 +0x72 / 128x128 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-07 |
Render to texture with different formats 1 != 3 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-07 |
Render to texture with different strides 512 != 128 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-17 |
80020001=sceKernelCreateMutex(): invalid name |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-06 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-04 |
Unknown syscall in known module 'sceNpService': 0x66c64821 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-04 |
Unknown syscall in known module 'sceNpService': 0x506c318d |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-04 |
Unknown syscall in known module 'sceNpService': 0x4e851b10 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-04 |
Unknown syscall in known module 'sceNpService': 0x174d0d24 |
Need For Speed™ Underground Rivals |
v1.10.3 |
2021-01-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=089e8b08, pos=0, access=1, data=1, text=1 |
Need For Speed™ Underground Rivals |
v1.9.3-80-g73bf6098e |
2021-01-02 |
__KernelStopThread: thread 1292 does not exist |
Need For Speed™ Underground Rivals |
v1.9.3-80-g73bf6098e |
2021-01-02 |
__KernelStopThread: thread 1250 does not exist |