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 |
METAL GEAR SOLID PEACE WALKER |
v1.16.4 |
2023-09-29 |
Can't draw: No current render step. Step count: 0 |
METAL GEAR SOLID PEACE WALKER |
v1.16.1 |
2023-09-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.16.1 |
2023-09-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.16.2 |
2023-09-23 |
__KernelStopThread: thread 321 does not exist (ApctlThread deleted) |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-09-05 |
UNIMPL sceIoDevctl("disc0:/PSP_GAME/USRDIR", 02425823, 00000000, 0, 09fff660, 4) |
METAL GEAR SOLID PEACE WALKER |
v1.10.3 |
2023-08-19 |
80000107=sceDisplaySetFrameBuf(00000000, 0, 0, 0): must change latched framebuf first |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-07-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=0002b3fb, pos=0, access=1, data=0, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-07-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=0002b3fb, pos=0, access=1, data=0, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-06-07 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000137, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.15.3 |
2023-06-02 |
Branch in Jump delay slot at 0902e970 in block starting at 0902e970 |
METAL GEAR SOLID PEACE WALKER |
v1.15.3 |
2023-06-02 |
Jump to invalid address: 06cb75c0 PC 0902e970 LR 0902e970 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1-249-gf80dd088b |
2023-08-14 |
Error in shader compilation: info: ERROR: 0:19: '=' : cannot convert from '2-component vector of int' to '2-component vector of float'
ERROR: 1 compilation errors. No code generated.
00000000:00000042 Tex Depal TFuncMod
#version 320 es
#extension GL_EXT_shader_framebuffer_fetch : require
// Driver: Adreno (TM) 610 - GLSL 320
#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), 0);
t3 = texelFetch(pal, ivec2(index3, 0 |
METAL GEAR SOLID PEACE WALKER |
v1.5.4-998-g08f26439c |
2023-05-27 |
sceKernelLoadModuleByID: unsupported options size=1091f328, flags=1091f32c, pos=1, access=0, data=278000432, text=278000436 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-06-12 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-06-14 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bead40, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bead40, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5f0, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5f0, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=08806b20, pos=0, access=20, data=0, text=0 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=08806b20, pos=0, access=-80, data=0, text=0 |
METAL GEAR SOLID PEACE WALKER |
v1.9.3-708-g259ae2862 |
2023-04-08 |
Unknown GetPointer 00000002 PC 08903d54 LR 08903d64 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1 |
2023-03-28 |
__KernelStopThread: thread 389 does not exist |
METAL GEAR SOLID PEACE WALKER |
v1.10.2 |
2023-03-28 |
__KernelStopThread: thread 2514 does not exist |
METAL GEAR SOLID PEACE WALKER |
v1.9.3-80-g73bf6098e |
2023-03-26 |
__KernelStopThread: thread 439 does not exist |
METAL GEAR SOLID PEACE WALKER |
v1.9.3-80-g73bf6098e |
2023-03-26 |
__KernelStopThread: thread 415 does not exist |
METAL GEAR SOLID PEACE WALKER |
v1.9.3-80-g73bf6098e |
2023-03-26 |
__KernelStopThread: thread 400 does not exist |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-03-12 |
Replacement rowPitch=256, but w=1024 (level=0) |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-2494-g6a6ec80f6 |
2023-02-03 |
UI scissor out of bounds in MainScreen: 515,18-555,2339 / 2357,1088 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-2494-g6a6ec80f6 |
2023-02-03 |
UI scissor out of bounds in MainScreen: 100,118-397,2239 / 2357,1088 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-2494-g6a6ec80f6 |
2023-02-03 |
UI scissor out of bounds in MainScreen: 100,0-397,2358 / 2357,1088 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-2494-g6a6ec80f6 |
2023-02-03 |
UI scissor out of bounds in MainScreen: 3865,8-1201,494 / 2357,1088 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-2494-g6a6ec80f6 |
2023-02-03 |
UI scissor out of bounds in MainScreen: 218,54-3608,448 / 2357,1088 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-2494-g6a6ec80f6 |
2023-02-03 |
UI scissor out of bounds in MainScreen: 218,0-3608,503 / 2357,1088 |
METAL GEAR SOLID PEACE WALKER |
v1.14 |
2023-01-27 |
Attempting to texture from current render target (src=04044000 / target=04044000 / flags=7), making a copy |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-04-17 |
00000400=sceGeEdramSetAddrTranslation(00000400) |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-01-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.16.4-22-gc0ee711cb |
2023-09-26 |
NpSignin Init Params: 00000000, 00000000, 00000000, 00000000 |
METAL GEAR SOLID PEACE WALKER |
v1.14.2 |
2023-01-04 |
UI scissor out of bounds in MainScreen: 1163,5-538,301 / 967,544 |
METAL GEAR SOLID PEACE WALKER |
v1.14.2 |
2023-01-04 |
UI scissor out of bounds in MainScreen: 0,0-1147,306 / 967,544 |
METAL GEAR SOLID PEACE WALKER |
v1.14.2 |
2023-01-03 |
MIPSCompileOp: Invalid instruction 00000005 |
METAL GEAR SOLID PEACE WALKER |
v1.14 |
2022-12-19 |
Rendering to framebuffer offset at 04162000 +256x0 (stride 512) |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-06-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-06-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.14 |
2022-12-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.12.2 |
2022-12-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-05-28 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1 |
2022-11-04 |
Rendering to framebuffer offset: 04000000 +256x0 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
Jump to invalid address: 03e1ee40 PC 08f87870 LR 08823dcc |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
MIPSCompileOp: Invalid instruction 67a70011 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
Jump to invalid address: 03799fc0 PC 08f8785c LR 08823dcc |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
Branch in Jump delay slot at 08f87858 in block starting at 08f87850 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
Jump to invalid address: 056e9000 PC 08f87858 LR 08823dcc |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
MIPSCompileOp: Invalid instruction 7ffffffe |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
Jump to invalid address: 03e1ee40 PC 08f87850 LR 08823dcc |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
sceKernelCreateThread(name=creature_zako_cannon): unsupported attributes 00000006 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-10-22 |
sceKernelCreateThread(name=god_g000_Field): unsupported attributes 00000006 |
METAL GEAR SOLID PEACE WALKER |
v1.14.4 |
2023-03-08 |
Waiting thread for 20 that was already waiting for 20 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1 |
2022-10-11 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1 |
2022-10-11 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1 |
2022-10-11 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2-953-ge2768b9e0 |
2022-09-21 |
Rendering from framebuf with offset 04000000 -> 04000000+0x0 |
METAL GEAR SOLID PEACE WALKER |
v1.9.3 |
2022-10-21 |
WriteToHardware: Invalid address 00000000 near PC 08807848 LR 08807848 |
METAL GEAR SOLID PEACE WALKER |
v1.10.2 |
2022-09-02 |
Unknown syscall in known module 'ThreadManForKernel': 0x28b6489c |
METAL GEAR SOLID PEACE WALKER |
v1.10.2 |
2022-09-02 |
Unknown syscall in known module 'ThreadManForKernel': 0xd6da4ba1 |
METAL GEAR SOLID PEACE WALKER |
v1.10.2 |
2022-09-02 |
Unknown syscall in known module 'ThreadManForKernel': 0x278c0df5 |
METAL GEAR SOLID PEACE WALKER |
v1.10.2 |
2022-09-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=08857c2c, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.13.1 |
2022-08-07 |
sceUtilityOskInitStart: invalid status |
METAL GEAR SOLID PEACE WALKER |
v1.12.3 |
2022-07-15 |
Decoding texture from VRAM mirror at 04710000 swizzle=0 |
METAL GEAR SOLID PEACE WALKER |
v1.10.2 |
2022-07-02 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
METAL GEAR SOLID PEACE WALKER |
v1.12.3 |
2022-05-16 |
Rendering to framebuffer offset: 04162000 +256x0 |
METAL GEAR SOLID PEACE WALKER |
v1.14 |
2022-12-19 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
METAL GEAR SOLID PEACE WALKER |
v1.12.3 |
2022-04-29 |
Using texture with rendered CLUT: texfmt=5, clutfmt=3 |
METAL GEAR SOLID PEACE WALKER |
v1.16.5 |
2023-09-29 |
sceNetAdhocMatchingInit(32768) at 0886a138 |
METAL GEAR SOLID PEACE WALKER |
v1.12.2 |
2022-02-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=08b6fc98, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.12.2 |
2022-02-13 |
sceFontGetFontInfo(0, 9ffcb08): bad font |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-07-06 |
Unexpected mpeg first timestamp: 0 / 0 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-28 |
MPEG user data found |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-12-09 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-28 |
sceMpegRingbufferPut(): invalid mpeg data |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-14 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-14 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-14 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-14 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-09-14 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
METAL GEAR SOLID PEACE WALKER |
v1.13.2 |
2022-11-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.10 |
2021-08-15 |
RET: Stack empty! |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-07-07 |
WriteToHardware: Invalid address 00000b30 near PC 08ddea38 LR 08ddeab4 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-06-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-07-07 |
BREAK instruction hit |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-04-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=08cacd90, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.11.3 |
2021-04-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-07-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-08-27 |
UNTESTED sceNetAdhocSetSocketAlert(1, 000003f0) at 088a0f14 |
METAL GEAR SOLID PEACE WALKER |
v1.15.4 |
2023-09-05 |
UNTESTED sceNetAdhocSetSocketAlert(2, 000003f0) at 088a0f14 |
METAL GEAR SOLID PEACE WALKER |
v1.12.3 |
2022-05-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000002, pos=0, access=1, data=2, text=2 |
METAL GEAR SOLID PEACE WALKER |
v1.12.3 |
2022-05-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000002, pos=0, access=1, data=1, text=1 |
METAL GEAR SOLID PEACE WALKER |
v1.12.3 |
2022-05-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff5c8, pos=0, access=1, data=2, text=2 |