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 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 08904614 / 08904618 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 0882f858 / 0882f864 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 0882eb04 / 0882eb10 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 08900c60 / 08900c6c |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 088ef1c4 / 088ef1c8 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 088ef180 / 088ef1bc |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-09-14 |
ELF relocation HI16/1(16) pair (instead of LO16) at 0882f574 / 0882f580 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-07-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08c98210, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-06-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.17.1 |
2024-08-14 |
Can't draw: No current render step. Step count: 0 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2023-12-23 |
Error in shader compilation: info: Fragment shader compilation failed.
ERROR: 0:19: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:19: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:19: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:22: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:22: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:22: '>>' :
00040000:0080f022 Tex TexAlpha 2x WriteMask TFuncMod AlphaTest >=
#version 300 es
// Adreno (TM) 305 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform sampler2D testtex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
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;
v.rgb = clamp(v.rgb * 2.0, 0.0, 1.0);
float aResult = texture(testtex, vec2(v.a * 0.996094 + 0.001953, 0)).a;
if (aResult < 0.5) DISCARD;
fragColor0 = v;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2023-12-23 |
Error in shader compilation: info: Fragment shader compilation failed.
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' :
00040000:00800002 Tex 2x WriteMask TFuncMod
#version 300 es
// Adreno (TM) 305 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
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);
v.rgb = clamp(v.rgb * 2.0, 0.0, 1.0);
fragColor0 = v;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2023-12-23 |
Error in shader compilation: info: Fragment shader compilation failed.
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' :
00040000:80000002 Tex WriteMask TFuncMod
#version 300 es
// Adreno (TM) 305 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
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 = v;
fragColor0.rgb = splat3(1.0) - fragColor0.rgb;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2023-12-23 |
Error in shader compilation: info: Fragment shader compilation failed.
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:18: '<<' : wrong operand types no operation '<<' exists that takes a left-hand operand of type 'uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' : wrong operand types no operation '>>' exists that takes a left-hand operand of type 'in uint' and a right operand of type 'const int' (or there is no acceptable conversion)
ERROR: 0:21: '>>' :
00040000:00000002 Tex WriteMask TFuncMod
#version 300 es
// Adreno (TM) 305 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
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 = v;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
OUTRUN 2006: COAST 2 COAST |
v1.16.6 |
2023-12-10 |
sceKernelLoadModule: unsupported options size=00000014, flags=00001234, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.16.6 |
2023-12-10 |
sceKernelLoadModule: unsupported options size=00000014, flags=00001234, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.16.6 |
2023-12-06 |
__KernelStopThread: thread 290 does not exist (helper deleted) |
OUTRUN 2006: COAST 2 COAST |
v1.16.6 |
2023-12-06 |
__KernelStopThread: thread 290 does not exist (helper terminated) |
OUTRUN 2006: COAST 2 COAST |
v1.15.4 |
2023-09-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.15.4 |
2023-09-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.15.4 |
2023-09-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.15.4 |
2023-09-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.14.4 |
2023-04-12 |
UNIMPL sceMpegAvcResourceGetAvcEsBuf(deadbeef) |
OUTRUN 2006: COAST 2 COAST |
v1.14.4 |
2023-04-12 |
sceNetAdhocMatchingInit(32768) at 08a69b04 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2023-04-07 |
Failed decrypting the PRX (ret = -1, size = 3898568, psp_size = 3898912)! |
OUTRUN 2006: COAST 2 COAST |
v1.14.4 |
2023-04-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffdeec, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.14.4 |
2023-03-01 |
Truncating vertex count from 21876 to 21845 |
OUTRUN 2006: COAST 2 COAST |
v1.14.4 |
2023-01-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.13.2 |
2022-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.13.2 |
2022-10-05 |
sceIoAssign(memstick:, msstor0p1:/, fatms0:, IOASSIGN_RDWR, 00000000, 0) |
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-29 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:6942 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:6943 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:6947 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-28 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:11267 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:11268 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:11274 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-28 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:8118 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:8119 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:8123 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-28 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:10228 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:10229 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:10235 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-28 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:6949 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:6950 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:6954 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-27 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:10246 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:10247 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:10253 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-27 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:6201 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:6202 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:6206 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-27 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:7911 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:7912 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:7916 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-27 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:8726 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:8727 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:8733 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-27 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:35071 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:35072 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:35078 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-27 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:13254 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:13255 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:13259 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-26 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:6847 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:6848 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:6852 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-26 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:7619 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:7620 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:7624 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-26 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:12343 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:12344 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:12348 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-26 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:6518 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:6519 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:6523 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.13.1-544-g31bd16a04 |
2022-08-26 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 040d4000 offset: 0 (64x64 stride 64, 5551):
[COLOR seq:6927 C:040d4000/64(4444) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:6928 C:040d4000/64(565) Z:04088000/512 X:0 Y:0 reint: true]
[COLOR seq:6932 C:040d4000/64(5551) Z:040d8000/64 X:0 Y:0 reint: false]
|
OUTRUN 2006: COAST 2 COAST |
v1.12.3-682-g6ee75ea69 |
2022-08-12 |
Normal projection mapping without normal? |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-26 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-26 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-26 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-07-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
OUTRUN 2006: COAST 2 COAST |
v1.16.6 |
2023-10-19 |
sceMpegRingbufferPut(): invalid mpeg data |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-08 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 19792 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145983520 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145972200 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-06-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-04-20 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-04-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-04-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-04-20 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-04-18 |
sceKernelCreateSema(KSAP_ThLockSema) unsupported attr parameter: 00000011 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-04-18 |
sceKernelCreateSema(KSAP_FnLockSema) unsupported attr parameter: 00000011 |
OUTRUN 2006: COAST 2 COAST |
v1.12.3 |
2022-03-25 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167769136 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2021-10-24 |
sceKernelVolatileMemUnlock(0) FAILED - not locked |
OUTRUN 2006: COAST 2 COAST |
v1.12.1 |
2021-10-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaf0, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3-1406-ge6a2da69c |
2021-09-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08a1d0d0, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3-1406-ge6a2da69c |
2021-09-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=0000001c, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2021-09-03 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-80-g73bf6098e |
2021-05-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=08caf9fc, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-80-g73bf6098e |
2021-05-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b22c, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.11.2 |
2021-03-25 |
GE Interrupt: newState might be 0 |
OUTRUN 2006: COAST 2 COAST |
v1.11.2 |
2021-03-25 |
GE Interrupt: newState might be 1 |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-10-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaf0, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/2beb1569, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/1e57a8e7, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/a3d81169, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/df089680, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/3ed62233, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/68f07175, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/9ff2b2e7, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/f8ef08a6, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/f3efaa91, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/b9848a74, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/46f61f8b, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/a0b8ca55, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/1078c008, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/85461eff, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/b8d10c56, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/75f03fa2, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/8a9ebdcd, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/3ea82a4b, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/95a84ee5, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/e792cd94, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/3d6d25a9, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/9b71a274, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-85-gc7b3a08cf |
2021-03-21 |
Ignoring func export scePsmfPlayer/235d8787, already implemented in HLE. |
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2021-03-05 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.11.3 |
2021-03-05 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
OUTRUN 2006: COAST 2 COAST |
v1.11.2 |
2021-03-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000137, pos=0, access=1, data=2, text=2 |
OUTRUN 2006: COAST 2 COAST |
v1.11.2 |
2021-03-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000002, pos=0, access=1, data=2, text=2 |