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 Fast and the Furious |
v1.12.3 |
2023-09-16 |
WriteToHardware: Invalid address ffffe94c near PC 08aab94c LR 08aab4e8 |
The Fast and the Furious |
v1.15.4 |
2023-08-06 |
WriteToHardware: Invalid address ffffe94c near PC 08aab8a0 LR 08aab8a0 |
The Fast and the Furious |
v1.12.3 |
2023-08-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
The Fast and the Furious |
v1.12.3 |
2023-08-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145224280 |
The Fast and the Furious |
v1.15.4 |
2023-08-03 |
WriteToHardware: Invalid address ffffe94c near PC 08ade050 LR 08ad8f80 |
The Fast and the Furious |
v1.10.3 |
2023-06-01 |
80630006=sceAtracSetDataAndGetID(08a87000, 80020323): invalid RIFF header |
The Fast and the Furious |
v1.15.3 |
2023-05-26 |
Unknown GE command : 11ffffff |
The Fast and the Furious |
v1.15.3 |
2023-05-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=08ad0000, pos=0, access=1, data=2, text=2 |
The Fast and the Furious |
v1.12.2 |
2023-04-26 |
Ignoring possible texturing from framebuffer at 04198010 +4x64 / 128x272 |
The Fast and the Furious |
v1.14.4 |
2023-04-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=2, text=2 |
The Fast and the Furious |
v1.14.4 |
2023-04-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=1, text=1 |
The Fast and the Furious |
v1.14.4 |
2023-04-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
The Fast and the Furious |
v1.14.4 |
2023-04-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
The Fast and the Furious |
v1.16.1 |
2023-09-12 |
Texture cache ran out of GPU memory; switching to low memory mode |
The Fast and the Furious |
v1.12.3 |
2023-03-15 |
Jump to invalid address: 07ffc8d0 |
The Fast and the Furious |
v1.12.3 |
2023-03-15 |
Branch in Jump delay slot at 09fff230 in block starting at 09fff220 |
The Fast and the Furious |
v1.12.3 |
2023-03-25 |
Jump to invalid address: 07ffca90 |
The Fast and the Furious |
v1.12.3 |
2023-03-25 |
Jump to invalid address: 07ffc880 |
The Fast and the Furious |
v1.14.4 |
2023-02-25 |
00000000=sceDisplaySetHoldMode(00000001): unsupported |
The Fast and the Furious |
v1.8.0 |
2023-01-30 |
WriteToHardware: Invalid address ffffe94c near PC 08a44f38 LR 08a44f38 |
The Fast and the Furious |
v1.14.1 |
2023-01-25 |
UI scissor out of bounds in MainScreen: 0,149-1174,571 / 720,1600 |
The Fast and the Furious |
v1.14.1 |
2023-01-25 |
UI scissor out of bounds in MainScreen: 0,64-1174,656 / 720,1600 |
The Fast and the Furious |
v1.14.2 |
2023-01-15 |
Error in shader compilation: info: ERROR: 0:33: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:34: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:37: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
002c0000:0d000022 Tex TexAlpha WriteMask StenToAlpha StenKeep TFuncMod ReplaceLogic
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 002c0000:0d000022 Tex TexAlpha WriteMask StenToAlpha StenKeep TFuncMod ReplaceLogic
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
fragColor0 = vec4(v.rgb, 0.0);
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (d32 & 0x00FFFFFFu) | (v32 & 0xFF000000u);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
The Fast and the Furious |
v1.14.2 |
2023-01-15 |
Error in shader compilation: info: ERROR: 0:33: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:34: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:37: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
002c0000:05000022 Tex TexAlpha WriteMask StenToAlpha Sten0 TFuncMod ReplaceLogic
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 002c0000:05000022 Tex TexAlpha WriteMask StenToAlpha Sten0 TFuncMod ReplaceLogic
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
fragColor0 = vec4(v.rgb, 0.0);
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (d32 & 0x00FFFFFFu) | (v32 & 0xFF000000u);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
The Fast and the Furious |
v1.14.2 |
2023-01-15 |
Error in shader compilation: info: ERROR: 0:33: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:34: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:37: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
002c0000:0d000002 Tex WriteMask StenToAlpha StenKeep TFuncMod ReplaceLogic
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 002c0000:0d000002 Tex WriteMask StenToAlpha StenKeep TFuncMod ReplaceLogic
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
fragColor0 = vec4(v.rgb, 0.0);
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (d32 & 0x00FFFFFFu) | (v32 & 0xFF000000u);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
The Fast and the Furious |
v1.14.2 |
2023-01-15 |
Error in shader compilation: info: ERROR: 0:33: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:34: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:37: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
002c0000:05000002 Tex WriteMask StenToAlpha Sten0 TFuncMod ReplaceLogic
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 002c0000:05000002 Tex WriteMask StenToAlpha Sten0 TFuncMod ReplaceLogic
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
fragColor0 = vec4(v.rgb, 0.0);
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (d32 & 0x00FFFFFFu) | (v32 & 0xFF000000u);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
WriteToHardware: Invalid address ffffe94c near PC 08b19830 LR 08b19830 |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 19, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 18, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 17, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 16, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 15, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 14, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 13, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 12, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 11, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 10, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 9, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 8, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 7, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 6, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 5, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 4, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 3, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 2, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-11-19 |
sceSasSetADSRMode(08bbde80, 1, 15, 00000000, 00000000, 00000000, 00000000): invalid modes |
The Fast and the Furious |
v1.13.2 |
2022-10-24 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144853504 |
The Fast and the Furious |
v1.13.2 |
2022-10-24 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146692488 |
The Fast and the Furious |
v1.13.2 |
2022-10-24 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147047284 |
The Fast and the Furious |
v1.13.2 |
2022-10-04 |
WriteToHardware: Invalid address ffffe94c near PC 08b197b0 LR 08b19710 |
The Fast and the Furious |
v1.12.3 |
2022-09-18 |
WriteToHardware: Invalid address ffffe94c near PC 0890ec14 LR 0890ebb8 |
The Fast and the Furious |
v1.10.3 |
2022-09-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
The Fast and the Furious |
v1.10.3 |
2022-09-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
The Fast and the Furious |
v1.11.3 |
2022-08-22 |
sceGeBreak(mode=0, unknown=08a6ac20): unknown ptr (valid) |
The Fast and the Furious |
v1.11.3 |
2022-08-22 |
Unimplemented HLE function Kprintf |
The Fast and the Furious |
v1.11.3 |
2022-08-22 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
The Fast and the Furious |
v1.13.1 |
2022-08-15 |
Could not setup streams, unexpected stream count: 13414 |
The Fast and the Furious |
v1.13.1 |
2022-08-15 |
Unexpected mpeg first timestamp: d59a080000 / 917412249600 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02e342e0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02010000 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02bad6b0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 0211b560 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 026c6900 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02aec510 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02aebe00 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02aebdd0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02aeb9c0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02aeb0c0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02d18ac0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02e98540 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 07c50940 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02af14a0 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 02af6060 |
The Fast and the Furious |
v1.12.3 |
2022-07-30 |
Jump to invalid address: 07c505c0 |
The Fast and the Furious |
v1.12.3 |
2022-07-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d74120, pos=0, access=1, data=1, text=1 |
The Fast and the Furious |
v1.12.3 |
2022-07-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=2, text=2 |
The Fast and the Furious |
v1.12.3 |
2022-07-08 |
Video out requested, not supported: mode=0 size=512,352 |
The Fast and the Furious |
v1.12.3 |
2022-06-10 |
WriteToHardware: Invalid address 0000028c near PC 089238a4 LR 089238a4 |
The Fast and the Furious |
v1.12.3 |
2022-05-21 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147002140 |
The Fast and the Furious |
v1.12.3 |
2022-05-21 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146993220 |
The Fast and the Furious |
v1.12.3 |
2022-05-21 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 166232480 |
The Fast and the Furious |
v1.12.3 |
2022-05-21 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 158723776 |
The Fast and the Furious |
v1.12.3 |
2022-02-27 |
WriteToHardware: Invalid address ffffe94c near PC 08000104 LR 09fbb2c0 |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0xfc0bc8db |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0xbe22eea3 |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0xa01443aa |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0x788f2b5e |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0x75dacb57 |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0x72a1ce0d |
The Fast and the Furious |
v1.10.3 |
2022-02-26 |
Unknown syscall in known module 'sceNpService': 0x66c64821 |
The Fast and the Furious |
v1.12.3 |
2022-02-18 |
WriteToHardware: Invalid address ffffe94c near PC 08b19c84 LR 08b19c84 |
The Fast and the Furious |
v1.12.3 |
2022-02-01 |
80630006=sceAtracSetData(2, 08d13140, 00038000): invalid RIFF header |
The Fast and the Furious |
v1.12.3 |
2022-02-04 |
sceGeBreak(mode=0, unknown=08d098b8): unknown ptr (valid) |
The Fast and the Furious |
v1.12.3 |
2022-01-28 |
WriteToHardware: Invalid address ffffe94c near PC 0892f124 LR 0892f124 |
The Fast and the Furious |
v1.12.2 |
2022-01-27 |
WriteToHardware: Invalid address 0a0da0c0 near PC 08a98d94 LR 08a98d94 |
The Fast and the Furious |
v1.12.3 |
2021-12-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=089fe978, pos=0, access=1, data=1, text=1 |
The Fast and the Furious |
v1.10.3 |
2021-12-24 |
WriteToHardware: Invalid address ffffe94c near PC 08930044 LR 0892f124 |
The Fast and the Furious |
v1.12.3 |
2021-11-19 |
WriteToHardware: Invalid address ffffe94c near PC 089991e4 LR 089991e4 |
The Fast and the Furious |
v1.12.3 |
2021-11-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
The Fast and the Furious |
v1.12.3 |
2021-11-15 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -559038737 |