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 SLUG XX™ |
v1.12.3 |
2022-05-28 |
Jump to invalid address: 07fc0000 |
METAL SLUG XX™ |
v1.12.3 |
2022-05-28 |
MIPSCompileOp: Invalid instruction 0000009f |
METAL SLUG XX™ |
v1.12.3 |
2022-05-28 |
MIPSCompileOp: Invalid instruction 00000cfd |
METAL SLUG XX™ |
v1.12.3 |
2022-05-21 |
__KernelStopThread: thread 347 does not exist |
METAL SLUG XX™ |
v1.12.3 |
2022-05-21 |
__KernelStopThread: thread 308 does not exist |
METAL SLUG XX™ |
v1.12.3 |
2022-05-21 |
Failed to read valid video stream data from header |
METAL SLUG XX™ |
v1.12.3 |
2022-05-21 |
Could not setup streams, unexpected stream count: 46230 |
METAL SLUG XX™ |
v1.12.3 |
2022-05-21 |
Unexpected mpeg first timestamp: 5579a080000 / 5873804509184 |
METAL SLUG XX™ |
v1.12.3 |
2022-05-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=089fe978, pos=0, access=1, data=1, text=1 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-22 |
FBO using existing buffer as depthbuffer, 04000000/04088000 and 04088000/00000000 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-22 |
FBO using existing buffer as depthbuffer, 04044000/04088000 and 04088000/00000000 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-19 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04154000/04110000 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-19 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04174000/04110000 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-19 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04088000/04110000 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-11 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
METAL SLUG XX™ |
v1.12.3 |
2022-04-11 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145224280 |
METAL SLUG XX™ |
v1.12.2 |
2022-04-10 |
80630011=sceAtracSetDataAndGetID(00000000, 00000000): buffer too small |
METAL SLUG XX™ |
v1.12.3 |
2022-04-19 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04000000/04110000 |
METAL SLUG XX™ |
v1.12.3 |
2022-03-31 |
D3D error in shader compilation: info: C:\Users\WONGE DEWEK\Documents\ppsspp\[email protected](85,16-55): error X4505: maximum temp register index exceeded
C:\Users\WONGE DEWEK\Documents\ppsspp\[email protected](85,12-69): error X4505: maximum temp register index exceeded
/ code: #define vec2 float2
#define vec3 float3
#define vec4 float4
#define ivec2 int2
#define ivec4 int4
#define mat4 float4x4
#define mat3x4 float4x3
#define splat3(x) vec3(x, x, x)
#define lowp
#define mediump
#define highp
#pragma warning( disable : 3571 )
mat4 u_proj : register(c0);
vec4 u_matambientalpha : register(c20);
mat3x4 u_world : register(c11);
mat3x4 u_view : register(c8);
vec4 u_uvscaleoffset : register(c17);
vec3 u_lightpos0 : register(c24);
vec3 u_lightatt0 : register(c32);
vec3 u_lightambient0 : register(c48);
vec3 u_lightdiffuse0 : register(c40);
vec3 u_lightspecular0 : register(c44);
vec3 u_lightpos1 : register(c25);
vec3 u_lightatt1 : register(c33);
vec3 u_lightdir1 : register(c29);
vec4 u_lightangle_spotCoef1 : register(c37);
vec3 u_lightambient1 : register(c49);
vec3 u_lightdiffuse1 : register(c41);
vec3 u_lightspecular1 : register(c45);
vec3 u_lightpos2 : register(c26);
vec3 u_lightatt2 : register(c34);
vec3 u_lightambient2 : register(c50);
vec3 u_lightdiffuse2 : register(c42);
vec3 u_lightspecular2 : register(c46);
vec3 u_lightpos3 : register(c27);
vec3 u_lightatt3 : register(c35);
vec3 u_lightambient3 : register(c51);
vec3 u_lightdiffuse3 : register(c43);
vec3 u_lightspecular3 : register(c47);
vec4 u_ambient : register(c19);
vec3 u_matdiffuse : register(c21);
vec4 u_matspecular : register(c22);
vec3 u_matemissive : register(c23);
vec4 u_cullRangeMin : register(c80);
vec4 u_cullRangeMax : register(c81);
struct VS_IN {
vec2 texcoord : TEXCOORD0;
vec3 normal : NORMAL;
vec3 position : POSITION;
};
struct VS_OUT {
vec3 v_texcoord : TEXCOORD0;
vec4 v_color0 : COLOR0;
vec3 v_color1 : COLOR1;
vec4 gl_Position : POSITION;
};
vec3 normalizeOr001(vec3 v) {
return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v);
}
VS_OUT main(VS_IN In) {
VS_OUT Out;
vec2 texcoord = In.texcoord;
vec3 normal = In.normal;
vec3 position = In.position;
vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz;
mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 0.0), u_world).xyz);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
lowp vec4 lightSum0 = u_ambient * u_matambientalpha + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
lowp float angle;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * u_matdiffuse) * max(ldot, 0.0);
if (ldot >= 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
if (u_matspecular.a <= 0.0) {
ldot = 1.0;
} else {
ldot = pow(max(ldot, 0.0), u_matspecular.a);
}
if (ldot > 0.0)
lightSum1 += u_lightspecular0 * u_matspecular.rgb * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient0 * u_matambientalpha.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
angle = length(u_lightdir1) == 0.0 ? 0.0 : dot(normalize(u_lightdir1), toLight);
if (angle >= u_lightangle_spotCoef1.x) {
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef1.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef1.y));
} else {
lightScale = 0.0;
}
diffuse = (u_lightdiffuse1 * u_matdiffuse) * max(ldot, 0.0);
if (ldot >= 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
if (u_matspecular.a <= 0.0) {
ldot = 1.0;
} else {
|
METAL SLUG XX™ |
v1.12.3 |
2022-03-25 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 14 |
METAL SLUG XX™ |
v1.12.3 |
2022-03-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=1, data=2, text=2 |
METAL SLUG XX™ |
v1.12.3 |
2022-03-01 |
Texture with unexpected bufw (full=41725) |
METAL SLUG XX™ |
v1.10.3 |
2022-01-31 |
Unknown GetPointer 00000000 PC 08826794 LR 08826794 |
METAL SLUG XX™ |
v1.12.3-999-g97bc7a1ae |
2022-06-27 |
sceNetAdhocMatchingInit(65536) at 08864640 |
METAL SLUG XX™ |
v1.9.3 |
2022-01-24 |
Unknown GetPointer 00000000 PC 0883ec20 LR 0883ece8 |
METAL SLUG XX™ |
v1.12.3 |
2022-01-22 |
Video out requested, not supported: mode=0 size=564,320 |
METAL SLUG XX™ |
v1.11.3 |
2021-12-03 |
Rendering to framebuffer offset: 04161800 +64x0 |
METAL SLUG XX™ |
v1.12.3 |
2022-06-11 |
Branch in Jump delay slot at 08e2f374 in block starting at 08e298d0 |
METAL SLUG XX™ |
v1.12.3 |
2022-06-11 |
Branch in Jump delay slot at 08e2f35c in block starting at 08e298d0 |
METAL SLUG XX™ |
v1.12.3 |
2022-06-11 |
Branch in Jump delay slot at 08e2f358 in block starting at 08e298d0 |
METAL SLUG XX™ |
v1.12.3 |
2022-03-25 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 92160 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146538036 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146728056 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146720128 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 5177420 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143598036 |
METAL SLUG XX™ |
v1.11.3 |
2021-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148111360 |
METAL SLUG XX™ |
v1.12.3 |
2021-10-24 |
Branch in Jump delay slot at 08e2f374 in block starting at 08e29d08 |
METAL SLUG XX™ |
v1.12.3 |
2021-10-24 |
Branch in Jump delay slot at 08e2f35c in block starting at 08e29d08 |
METAL SLUG XX™ |
v1.12.3 |
2021-10-24 |
Branch in Jump delay slot at 08e2f358 in block starting at 08e29d08 |
METAL SLUG XX™ |
v1.12.1 |
2021-10-12 |
sceMpegRingbufferPut(): invalid mpeg data |
METAL SLUG XX™ |
v1.11.3 |
2021-10-01 |
ReadFromHardware: Invalid address 00000000 near PC 0886d320 LR 0886d328 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=2, text=2 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a98 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a94 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a90 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a8c in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a88 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a80 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a7c in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a78 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a74 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a70 in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-14 |
Branch in Jump delay slot at 08a64a6c in block starting at 08a5d8c4 |
METAL SLUG XX™ |
v1.10.3 |
2021-10-03 |
Render to texture using CLUT with different strides 512 != 64 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-01 |
Unknown GetPointer fcfeff02 PC 08861468 LR 08861468 |
METAL SLUG XX™ |
v1.12 |
2021-11-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
METAL SLUG XX™ |
v1.11.3 |
2021-11-18 |
80020001=sceKernelCreateSema(): invalid name |
METAL SLUG XX™ |
v1.11.3 |
2021-07-10 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bd24a0, pos=0, access=1, data=2, text=2 |
METAL SLUG XX™ |
v1.11.3 |
2021-07-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
METAL SLUG XX™ |
v1.11.3 |
2021-05-30 |
MIPSCompileOp: Invalid instruction 00000179 |
METAL SLUG XX™ |
v1.11.3 |
2021-05-30 |
MIPSCompileOp: Invalid instruction 000005ff |
METAL SLUG XX™ |
v1.11.3 |
2021-05-30 |
MIPSCompileOp: Invalid instruction cdfa0008 |
METAL SLUG XX™ |
v1.11.3 |
2021-05-30 |
Jump to invalid address: 0bbfffa8 |
METAL SLUG XX™ |
v1.11.3 |
2021-05-30 |
MIPSCompileOp: Invalid instruction 000006fc |
METAL SLUG XX™ |
v1.11.3 |
2021-05-30 |
Jump to invalid address: 03ffffec |
METAL SLUG XX™ |
v1.9.3-601-g31f4caeb2 |
2021-05-09 |
__KernelStopThread: thread 479 does not exist |
METAL SLUG XX™ |
v1.9.3-601-g31f4caeb2 |
2021-05-09 |
__KernelStopThread: thread 476 does not exist |
METAL SLUG XX™ |
v1.9.3-601-g31f4caeb2 |
2021-06-04 |
__KernelStopThread: thread 295 does not exist |
METAL SLUG XX™ |
v1.9.3-601-g31f4caeb2 |
2021-06-04 |
__KernelStopThread: thread 293 does not exist |
METAL SLUG XX™ |
v1.12.3 |
2022-03-21 |
__KernelStopThread: thread 296 does not exist |
METAL SLUG XX™ |
v1.12.3 |
2021-11-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=2, text=2 |
METAL SLUG XX™ |
v1.10.3 |
2021-04-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
METAL SLUG XX™ |
v1.10.3 |
2021-04-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349168 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-10 |
sceGeBreak(mode=0, unknown=08a6ac20): unknown ptr (valid) |
METAL SLUG XX™ |
v1.11.3 |
2021-04-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-10 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000135, pos=0, access=1, data=2, text=2 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Branch in Jump delay slot at 09fb0d20 in block starting at 09fb0ba0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Branch in Jump delay slot at 09fb0d1c in block starting at 09fb0ba0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Branch in Jump delay slot at 09fb0d18 in block starting at 09fb0ba0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Branch in Jump delay slot at 09fb0d14 in block starting at 09fb0ba0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Branch in Jump delay slot at 09fb0d10 in block starting at 09fb0ba0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Branch in Jump delay slot at 09fb0d0c in block starting at 09fb0ba0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Jump to invalid address: 03226e80 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Jump to invalid address: 03226ab0 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-05 |
Jump to invalid address: 03226d50 |
METAL SLUG XX™ |
v1.11.3 |
2021-04-01 |
Unknown GetPointer 00000000 PC 08000104 LR 09fbdac0 |
METAL SLUG XX™ |
v1.11.3 |
2021-09-02 |
Branch in Jump delay slot at 08d8b048 in block starting at 08d888dc |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120 |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771616 |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146370816 |
METAL SLUG XX™ |
v1.11.3 |
2021-03-27 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
METAL SLUG XX™ |
v1.10.3 |
2021-03-10 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -559038737 |
METAL SLUG XX™ |
v1.10.3 |
2021-03-10 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146162800 |
METAL SLUG XX™ |
v1.10.3 |
2021-03-10 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 102464 |
METAL SLUG XX™ |
v1.10.3 |
2021-03-10 |
sceGeBreak(mode=0, unknown=08dfeda8): unknown ptr (valid) |