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 |
Ford Racing Off Road |
v1.13.1-242-g6c46095c3 |
2023-05-07 |
Error in shader compilation: info: ERROR: 0:19: Incompatible types in initialization (and no available implicit conversion)
ERROR: 0:23: Use of undeclared identifier 'tsize'
ERROR: 0:25: Use of undeclared identifier 'tsize'
00000000:00000062 Tex TexAlpha Depal TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
// Driver: Apple A11 GPU - 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 pal;
uniform uint u_depal_mask_shift_off_fmt;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec2 uv = v_texcoord.xy;
vec2 uv_round;
vec2 tsize = textureSize(tex, 0).xy;
vec2 fraction;
bool bilinear = (u_depal_mask_shift_off_fmt >> 31) != 0U;
if (bilinear) {
uv_round = uv * tsize - vec2(0.5, 0.5);
fraction = fract(uv_round);
uv_round = (uv_round - fraction + vec2(0.5, 0.5)) / tsize;
} else {
uv_round = uv;
}
highp vec4 t = texture(tex, uv_round);
highp vec4 t1 = textureOffset(tex, uv_round, ivec2(1, 0));
highp vec4 t2 = textureOffset(tex, uv_round, ivec2(0, 1));
highp vec4 t3 = textureOffset(tex, uv_round, ivec2(1, 1));
uint depalMask = (u_depal_mask_shift_off_fmt & 0xFFU);
uint depalShift = (u_depal_mask_shift_off_fmt >> 8) & 0xFFU;
uint depalOffset = ((u_depal_mask_shift_off_fmt >> 16) & 0xFFU) << 4;
uint depalFmt = (u_depal_mask_shift_off_fmt >> 24) & 0x3U;
uvec4 col; uint index0; uint index1; uint index2; uint index3;
switch (int(depalFmt)) {
case 0:
col = uvec4(t.rgb * vec3(31.99, 63.99, 31.99), 0);
index0 = (col.b << 11) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgb * vec3(31.99, 63.99, 31.99), 0);
index1 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t2.rgb * vec3(31.99, 63.99, 31.99), 0);
index2 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t3.rgb * vec3(31.99, 63.99, 31.99), 0);
index3 = (col.b << 11) | (col.g << 5) | (col.r);
}
break;
case 1:
col = uvec4(t.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index0 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index1 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t2.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index2 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t3.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index3 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
}
break;
case 2:
col = uvec4(t.rgba * 15.99);
index0 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 15.99);
index1 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t2.rgba * 15.99);
index2 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t3.rgba * 15.99);
index3 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
}
break;
case 3:
col = uvec4(t.rgba * 255.99);
index0 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 255.99);
index1 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t2.rgba * 255.99);
index2 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t3.rgba * 255.99);
index3 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
}
break;
};
index0 = ((index0 >> depalShift) & depalMask) | depalOffset;
t = texelFetch(pal, ivec2(index0, 0), 0);
if (bilinear && !(index0 == index1 && index1 == index2 && index2 == index3)) {
index1 = ((index1 >> depalShift) & depalMask) | depalOffset;
index2 = ((index2 >> depalShift) & depalMask) | depalOffset;
index3 = ((index3 >> depalShift) & depalMask) | depalOffset;
t1 = texelFetch(pal, ivec2(index1, 0), 0);
t2 = texelFetch(pal, ivec2(index2, 0), |
Ford Racing Off Road |
v1.13.1-242-g6c46095c3 |
2023-05-07 |
Error in shader compilation: info: ERROR: 0:21: Incompatible types in initialization (and no available implicit conversion)
ERROR: 0:25: Use of undeclared identifier 'tsize'
ERROR: 0:27: Use of undeclared identifier 'tsize'
00000000:000003e2 Tex TexAlpha Depal TClampST TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
// Driver: Apple A11 GPU - 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 vec4 u_texclamp;
uniform sampler2D pal;
uniform uint u_depal_mask_shift_off_fmt;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec2 fixedcoord = vec2(clamp(v_texcoord.x, u_texclamp.z, u_texclamp.x - u_texclamp.z), clamp(v_texcoord.y, u_texclamp.w, u_texclamp.y - u_texclamp.w));
vec2 uv = fixedcoord.xy;
vec2 uv_round;
vec2 tsize = textureSize(tex, 0).xy;
vec2 fraction;
bool bilinear = (u_depal_mask_shift_off_fmt >> 31) != 0U;
if (bilinear) {
uv_round = uv * tsize - vec2(0.5, 0.5);
fraction = fract(uv_round);
uv_round = (uv_round - fraction + vec2(0.5, 0.5)) / tsize;
} else {
uv_round = uv;
}
highp vec4 t = texture(tex, uv_round);
highp vec4 t1 = textureOffset(tex, uv_round, ivec2(1, 0));
highp vec4 t2 = textureOffset(tex, uv_round, ivec2(0, 1));
highp vec4 t3 = textureOffset(tex, uv_round, ivec2(1, 1));
uint depalMask = (u_depal_mask_shift_off_fmt & 0xFFU);
uint depalShift = (u_depal_mask_shift_off_fmt >> 8) & 0xFFU;
uint depalOffset = ((u_depal_mask_shift_off_fmt >> 16) & 0xFFU) << 4;
uint depalFmt = (u_depal_mask_shift_off_fmt >> 24) & 0x3U;
uvec4 col; uint index0; uint index1; uint index2; uint index3;
switch (int(depalFmt)) {
case 0:
col = uvec4(t.rgb * vec3(31.99, 63.99, 31.99), 0);
index0 = (col.b << 11) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgb * vec3(31.99, 63.99, 31.99), 0);
index1 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t2.rgb * vec3(31.99, 63.99, 31.99), 0);
index2 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t3.rgb * vec3(31.99, 63.99, 31.99), 0);
index3 = (col.b << 11) | (col.g << 5) | (col.r);
}
break;
case 1:
col = uvec4(t.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index0 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index1 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t2.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index2 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t3.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index3 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
}
break;
case 2:
col = uvec4(t.rgba * 15.99);
index0 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 15.99);
index1 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t2.rgba * 15.99);
index2 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t3.rgba * 15.99);
index3 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
}
break;
case 3:
col = uvec4(t.rgba * 255.99);
index0 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 255.99);
index1 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t2.rgba * 255.99);
index2 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t3.rgba * 255.99);
index3 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
}
break;
};
index0 = ((index0 >> depalShift) & depalMask) | depalOffset;
t = texelFetch(pal, ivec2(index0, 0), 0);
if (bilinear && !(index0 == index1 && index1 == index2 && index2 == index3)) {
index1 = ((index1 >> depalShift) & depalMask) | depalOffset;
index2 = ((index2 >> depalS |
Star Wars Battlefront: Elite Squadron |
v1.13.1-242-g6c46095c3 |
2023-01-16 |
Error in shader compilation: info: ERROR: 0:21: Incompatible types in initialization (and no available implicit conversion)
ERROR: 0:25: Use of undeclared identifier 'tsize'
ERROR: 0:27: Use of undeclared identifier 'tsize'
00000000:000003e2 Tex TexAlpha Depal TClampST TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
// Driver: Apple A11 GPU - 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 vec4 u_texclamp;
uniform sampler2D pal;
uniform uint u_depal_mask_shift_off_fmt;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec2 fixedcoord = vec2(clamp(v_texcoord.x, u_texclamp.z, u_texclamp.x - u_texclamp.z), clamp(v_texcoord.y, u_texclamp.w, u_texclamp.y - u_texclamp.w));
vec2 uv = fixedcoord.xy;
vec2 uv_round;
vec2 tsize = textureSize(tex, 0).xy;
vec2 fraction;
bool bilinear = (u_depal_mask_shift_off_fmt >> 31) != 0U;
if (bilinear) {
uv_round = uv * tsize - vec2(0.5, 0.5);
fraction = fract(uv_round);
uv_round = (uv_round - fraction + vec2(0.5, 0.5)) / tsize;
} else {
uv_round = uv;
}
highp vec4 t = texture(tex, uv_round);
highp vec4 t1 = textureOffset(tex, uv_round, ivec2(1, 0));
highp vec4 t2 = textureOffset(tex, uv_round, ivec2(0, 1));
highp vec4 t3 = textureOffset(tex, uv_round, ivec2(1, 1));
uint depalMask = (u_depal_mask_shift_off_fmt & 0xFFU);
uint depalShift = (u_depal_mask_shift_off_fmt >> 8) & 0xFFU;
uint depalOffset = ((u_depal_mask_shift_off_fmt >> 16) & 0xFFU) << 4;
uint depalFmt = (u_depal_mask_shift_off_fmt >> 24) & 0x3U;
uvec4 col; uint index0; uint index1; uint index2; uint index3;
switch (int(depalFmt)) {
case 0:
col = uvec4(t.rgb * vec3(31.99, 63.99, 31.99), 0);
index0 = (col.b << 11) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgb * vec3(31.99, 63.99, 31.99), 0);
index1 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t2.rgb * vec3(31.99, 63.99, 31.99), 0);
index2 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t3.rgb * vec3(31.99, 63.99, 31.99), 0);
index3 = (col.b << 11) | (col.g << 5) | (col.r);
}
break;
case 1:
col = uvec4(t.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index0 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index1 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t2.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index2 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t3.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index3 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
}
break;
case 2:
col = uvec4(t.rgba * 15.99);
index0 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 15.99);
index1 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t2.rgba * 15.99);
index2 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t3.rgba * 15.99);
index3 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
}
break;
case 3:
col = uvec4(t.rgba * 255.99);
index0 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 255.99);
index1 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t2.rgba * 255.99);
index2 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t3.rgba * 255.99);
index3 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
}
break;
};
index0 = ((index0 >> depalShift) & depalMask) | depalOffset;
t = texelFetch(pal, ivec2(index0, 0), 0);
if (bilinear && !(index0 == index1 && index1 == index2 && index2 == index3)) {
index1 = ((index1 >> depalShift) & depalMask) | depalOffset;
index2 = ((index2 >> depalS |
Samurai Shodown Anthology |
v1.13.1-242-g6c46095c3 |
2022-11-20 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(TRI8ae2, 1, 2, 09fff8d0, 20000000, 0) at 0888d474 |
Samurai Shodown Anthology |
v1.13.1-242-g6c46095c3 |
2022-11-20 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(TRI69d3, bc:2d:cf:d2:69:d3, 20000000, 0) at 0888d5dc |
Samurai Shodown Anthology |
v1.14.4 |
2023-03-24 |
sceNetAdhocMatchingInit(32768) at 0888c690 |
God of War: Ghost of Sparta Demo |
v1.13.2 |
2023-05-02 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888):
[C:04161800/512 Z:04118000/512 X:0 Y:1 reint: false] [C:04162000/512 Z:04118000/512 X:0 Y:0 reint: false] |
God of War®: Ghost of Sparta |
v1.13.2 |
2023-05-28 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888):
[C:04162000/512 Z:04118000/512 X:0 Y:0 reint: false] [C:04161800/512 Z:04118000/512 X:0 Y:1 reint: false] |
God of War®: Ghost of Sparta |
v1.13.2 |
2023-05-28 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888):
[C:04161800/512 Z:04118000/512 X:0 Y:1 reint: false] [C:04162000/512 Z:04118000/512 X:0 Y:0 reint: false] |
Toy Story 3 |
v1.13.2 |
2023-05-28 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 040de000 offset: 0 (256x128 stride 256, 565):
[C:040ce000/256 Z:04088000/512 X:0 Y:128 reint: false] [C:040de000/256 Z:04088000/512 X:0 Y:0 reint: false] |
God of War™: Ghost of Sparta |
v1.13.2 |
2023-05-28 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888):
[C:04162000/512 Z:04118000/512 X:0 Y:0 reint: false] [C:04161800/512 Z:04118000/512 X:0 Y:1 reint: false] |
God of War™: Ghost of Sparta |
v1.13.2 |
2023-05-28 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888):
[C:04161800/512 Z:04118000/512 X:0 Y:1 reint: false] [C:04162000/512 Z:04118000/512 X:0 Y:0 reint: false] |
eFootball PES 2021 T. Bendezu "C19" |
v1.15.4 |
2023-05-28 |
sceNetAdhocMatchingInit(32768) at 08a719b8 |
METAL SLUG XX |
v1.15.4 |
2023-05-29 |
sceNetAdhocMatchingInit(65536) at 08865048 |
Grand Theft Auto: Vice City Stories |
v1.15.4 |
2023-05-28 |
sceNetAdhocMatchingInit(13620) at 08a56264 |
METAL SLUG XX™ |
v1.15.4 |
2023-05-29 |
sceNetAdhocMatchingInit(65536) at 08864640 |
Mortal Kombat: Unchained |
v1.15.4-85-gae8ded6ce |
2023-05-29 |
Failed to read valid video stream data from header |
Burnout™ Legends |
v1.13.2 |
2023-04-20 |
Ignoring possible texturing from framebuffer at 04174000 +0x214 / 64x272 |
Battlegrounds3 |
v1.13.2-947-g7b47ba802 |
2022-11-28 |
MFIC instruction hit (70020024) at 08832bd0 |
Battlegrounds3 |
v1.13.2-947-g7b47ba802 |
2022-11-28 |
Trying to relocate non-loaded section (null) |
ゴッド・オブ・ウォー 落日の悲愴曲 |
v1.14.4-951-gaa66cc03f |
2023-05-28 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War: Ghost of Sparta Demo |
v1.14.4 |
2023-05-27 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War: Chains of Olympus |
v1.14.4-993-gf03dc23df |
2023-05-29 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War: Chains of Olympus |
v1.14.4-98-gb56b28f77 |
2023-05-29 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War™: Ghost of Sparta |
v1.14.4-967-gceaaaaeff |
2023-05-29 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War®: Ghost of Sparta |
v1.14.4-951-gaa66cc03f |
2023-05-29 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
eFootball PES 2021 T. Bendezu "C19" |
v1.9.4 |
2023-05-29 |
Savedata version requested: 3 |
NARUTO: Ultimate Ninja Heroes 2 |
v1.9.4 |
2023-03-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
WWE'12 |
v1.9.3 |
2022-12-15 |
sceDmacMemcpy(dest=0412f030, src=095e5850, size=65552): overlapping read |
Prince of Persia - Revelations |
v1.9.4 |
2023-05-29 |
sceKernelCreateThread(name=scePsmf_library): unsupported attributes 00000006 |
WWE'12 |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 040cc000 +65x0 |
MX vs ATV™ Reflex |
v1.9.4 |
2023-05-27 |
Rendering to framebuffer offset: 04000000 +256x0 |
God of War: Chains of Olympus |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
DRAGONBALL: EVOLUTION |
v1.9.4 |
2023-05-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
Burnout™ Legends |
v1.9.4 |
2023-05-28 |
Attempted set for logic op: f |
Spider-Man(TM): Web of Shadows – Amazing Allies Edition |
v1.9.4 |
2023-05-19 |
An uneaten prefix at end of block for 08c3a5d4 |
Assassin's Creed: Bloodlines™ |
v1.9.4 |
2023-05-26 |
An uneaten prefix at end of block for 08927e54 |
BEN 10: Protector of Earth |
v1.9.4 |
2023-05-28 |
sceDmacMemcpy(dest=04000000, src=091ae240, size=557056): overlapping read |
BEN 10: Protector of Earth |
v1.9.4 |
2023-05-29 |
sceDmacMemcpy(dest=04088000, src=092875c0, size=557056): overlapping read |
God of War™: Ghost of Sparta |
v1.9.4 |
2023-03-15 |
80631003=sceAtracSetAA3DataAndGetID(08c60dc0, 0001e000, 0022f9d4, 09fbba6c[ffffffff]): invalid ea3 magic bytes |
NBA2K12 |
v1.9.4 |
2023-05-29 |
80000107=sceDisplaySetFrameBuf(04000000, 512, 0, 0): must change latched framebuf first |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-05-22 |
Video out requested, not supported: mode=0 size=0,0 |
Disney•Pixar UP |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
Prince of Persia - Revelations |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
Mortal Kombat: Unchained |
v1.9.4 |
2023-05-29 |
Could not setup streams, unexpected stream count: 13414 |
Prince of Persia - Rival Swords |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
Dante's Inferno™ |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
Toy Story 3 |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
NBA2K12 |
v1.9.4 |
2023-05-29 |
80000107=sceDisplaySetFrameBuf(04000000, 512, 0, 0): must change latched framebuf first |
Mortal Kombat: Unchained |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
Def Jam® Fight For NY™: The Takeover |
v1.9.4 |
2023-05-29 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 34520 |
Prince of Persia: The Forgotten Sands™ |
v1.9.4 |
2023-05-29 |
Video out requested, not supported: mode=0 size=0,0 |
God of War™: Ghost of Sparta |
v1.9.4 |
2023-05-13 |
Unexpected mpeg first timestamp: 0 / 0 |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00004000): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00004c00): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00005000): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00018700): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00012e00): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 00015700): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 0000d800): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08bd5600, 0000fe00): atracID uses different codec type than data |
WWE SmackDown vs. RAW 2010 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08b9d5c0, 00038000): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-28 |
80630007=sceAtracSetData(2, 08d4b180, 00010000): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00004d00): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00019800): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00004000): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00004c00): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00018000): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 0000d800): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00018700): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00012e00): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 0000fe00): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data |
WWE'12 |
v1.9.4 |
2023-05-29 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
MotorStorm®: Arctic Edge |
v1.9.4 |
2023-05-26 |
VTYPE with morph used: THRU=0 TC=2 COL=0 POS=2 NRM=1 WT=0 NW=1 IDX=0 MC=2 |
God of War: Chains of Olympus |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04161800 +64x0 |
MX vs ATV™ Reflex |
v1.9.4 |
2023-05-27 |
Decoding texture from VRAM mirror at 042cc000 swizzle=0 |
Need For Speed™ Underground Rivals |
v1.9.4 |
2023-05-28 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
Prince of Persia - Revelations |
v1.9.4 |
2023-05-29 |
Decoding texture from VRAM mirror at 04710000 swizzle=0 |
FIFA STREET 2 |
v1.9.4 |
2023-05-29 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151249632 |
FIFA STREET 2 |
v1.9.4 |
2023-05-29 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151249632 |
Prince of Persia - Revelations |
v1.9.4 |
2023-05-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=1, text=1 |
Prince of Persia - Revelations |
v1.9.4 |
2023-05-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=08cacd90, pos=0, access=1, data=2, text=2 |
Ford Racing Off Road |
v1.9.4 |
2023-05-27 |
Decoding texture from VRAM mirror at 04288000 swizzle=0 |
God of War: Chains of Olympus |
v1.9.4 |
2023-05-28 |
Rendering to framebuffer offset: 04161800 +64x0 |
God of War: Chains of Olympus |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
Grand Theft Auto®: Chinatown Wars™ |
v1.9.4 |
2023-05-28 |
Decoding texture from VRAM mirror at 04710000 swizzle=0 |
God of War™: Ghost of Sparta |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
ゴッド・オブ・ウォー 落日の悲愴曲 |
v1.9.4 |
2023-05-28 |
Rendering to framebuffer offset: 04162000 +256x0 |
God of War: Chains of Olympus |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
God of War®: Ghost of Sparta |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
God of War™: Ghost of Sparta |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
God of War: Ghost of Sparta Demo |
v1.9.4 |
2023-05-29 |
Rendering to framebuffer offset: 04162000 +256x0 |
Pac-Man World 3 |
v1.9.4 |
2023-05-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
Pac-Man World 3 |
v1.9.4 |
2023-05-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bf68e0, pos=0, access=1, data=1, text=1 |
Need For Speed™ Underground Rivals |
v1.9.4 |
2023-05-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=1, text=1 |
Need For Speed™ Underground Rivals |
v1.9.4 |
2023-05-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=0898786c, pos=0, access=1, data=2, text=2 |
NBA STREET Showdown |
v1.9.4 |
2023-05-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=2, text=2 |
NBA STREET Showdown |
v1.9.4 |
2023-05-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a1f624, pos=0, access=1, data=1, text=1 |
METAL SLUG Anthology |
v1.9.4 |
2023-05-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=08ad0000, pos=0, access=1, data=2, text=2 |