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 |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
00000000=sceDisplaySetHoldMode(00000001): unsupported |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/f5478233, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/d8f54a51, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/d0a56296, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/d021c0fb, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/a703fe0f, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/8f450998, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/87c263d1, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/87677e40, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/7f696782, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/44e07129, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/3cef484f, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/3c2fa058, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/35750070, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/354d27ea, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/2a368661, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.10.3 |
2025-09-05 |
Ignoring func export sceMp3/0db149f4, already implemented in HLE. |
RESISTANCE® ~報復の刻~ |
v1.19.3 |
2025-08-29 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r8p0-00dev0 [Revision 96995].
01700551:00000b29 HWX C T N LM Light: 0: c:1 t:0 1: c:1 t:1 2: c:1 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01700551:00000b29 HWX C T N LM Light: 0: c:1 t:0 1: c:1 t:1 2: c:1 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
attribute lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform lowp vec3 u_lightspecular0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform lowp vec3 u_lightspecular1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform lowp vec4 u_ambient;
uniform lowp vec3 u_matdiffuse;
uniform lowp vec4 u_matspecular;
uniform lowp vec3 u_matemissive;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
uniform highp vec4 u_depthRange;
uniform highp vec4 u_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying mediump float v_fogdepth;
vec3 normalizeOr001(vec3 v) {
return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v);
}
void main() {
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);
vec4 ambientColor = u_matambientalpha;
vec3 diffuseColor = u_matdiffuse.rgb;
vec3 specularColor = u_matspecular.rgb;
lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0);
lowp vec3 lightSum1 = splat3(0.0);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0;
ldot = dot(toLight, worldnormal);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
}
if (ldot > 0.0)
lightSum1 += u_lightspecular0 * specularColor * ldot ;
}
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse);
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
if (ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
}
if (ldot > 0.0)
lightSum1 += u_lightspecular1 * specularColor * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
if (ldot >= 0.0) {
if (u_matspecular.a > 0.0) {
ldot = dot(normalize(toLight + vec3(0.0, 0.0, 1.0)), worldnormal);
ldot = pow(max(ldot, 0.0), u_matspecular.a);
} else {
ldot = 1.0;
}
if (ldot > 0.0)
|
RESISTANCE® ~報復の刻~ |
v1.18 |
2025-08-18 |
Unknown GetPointerWrite 288f3918 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.12.3 |
2025-07-16 |
Unknown GE command : 342a4561 |
RESISTANCE® ~報復の刻~ |
v1.5.4-956-ga3bbe8791 |
2025-07-16 |
Unknown GE command : fbb20010 |
RESISTANCE® ~報復の刻~ |
v1.9.0 |
2025-07-16 |
Unknown GE command : fb007100 |
RESISTANCE® ~報復の刻~ |
v1.17.1 |
2025-07-09 |
Unknown GetPointerWrite 281783d8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-09 |
Could not setup streams, unexpected stream count: 33016 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-05 |
Unknown GetPointerWrite 131ef3e8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-05 |
Unknown GetPointerWrite 1b972108 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-04 |
Unknown GetPointerWrite 26564d28 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-03 |
80631003=sceAtracSetAA3DataAndGetID(090e5d00, 00000800, 00000000, 09fd49b8[ffffffff]): invalid ea3 magic bytes |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-08 |
Unknown GetPointerWrite 25171f78 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-24 |
Unknown GetPointerWrite 191f1f78 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.12.1 |
2025-05-24 |
Unknown GE command : d1a7d772 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-21 |
Unknown GetPointerWrite 0018ee38 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-08 |
Unknown GetPointerWrite 27171f78 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-08 |
Unknown GetPointerWrite 1321ba28 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-08 |
Unexpected mpeg first timestamp: 5e5ce090000 / 6484562345984 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-07 |
Unknown GetPointerWrite 1326b988 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-05-03 |
Block transfer invalid: 00000000/0 -> 00000000/0, 1x1x4 (0,0)->(0,0) |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-29 |
Unexpected mpeg first timestamp: 42609090000 / 4561406853120 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-29 |
Unknown GetPointerWrite 190330e8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-22 |
Unknown GetPointerWrite 0a000754 PC 0880759c LR 0880742c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-22 |
Unknown GetPointer 1e000000 PC 0880759c LR 0880742c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-21 |
Unknown GetPointerWrite 0d1e42b8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1-353-gcc9a25cffa |
2025-04-20 |
Vertices without position found: (07600003) [07600003] P: ? T: f (12b) |
RESISTANCE® ~報復の刻~ |
v1.18.1-353-gcc9a25cffa |
2025-04-20 |
Unusual bezier/spline vtype: 12bd22e8, morph: 7, bones: 5 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-13 |
Unknown GetPointerWrite 21b1cd10 PC 08d09d20 LR 08bfb8e4 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-04-09 |
Unknown GetPointerWrite 20171f58 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-06-02 |
Unknown GetPointerWrite 261705d8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.17.1 |
2025-04-06 |
Unknown GetPointerWrite 20170668 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-27 |
Unexpected mpeg first timestamp: 1000006445 / 68719502405 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-26 |
Unknown GetPointerWrite f81bff88 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-21 |
Unknown GetPointerWrite 283d71b8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.16 |
2025-03-18 |
Drawing region rate add non-zero: 0100, 04f0 of 01df, 010f |
RESISTANCE® ~報復の刻~ |
v1.16 |
2025-03-18 |
Unknown GE command : fc56ff00 |
RESISTANCE® ~報復の刻~ |
v1.16 |
2025-03-18 |
Unexpected mpeg first timestamp: 84315090100 / 9084208742656 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-11 |
Unknown GetPointerWrite 07250ea8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.17.1 |
2025-03-10 |
MPEG user data found |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-08 |
Unknown GetPointerWrite 2888cb48 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-06 |
Unknown GetPointerWrite 19214298 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-05 |
Unknown GetPointerWrite 26171f88 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.15.3 |
2025-03-04 |
Unknown GetPointerWrite 28970ec8 PC 08ca31e0 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-07 |
Unknown GetPointerWrite 261911f8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-03-01 |
Unknown GetPointerWrite 22f9cce8 PC 08d09d20 LR 08cd6754 |
RESISTANCE® ~報復の刻~ |
v1.8.0 |
2025-03-01 |
Unknown GE command : 11174981 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000bc in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a00 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506998 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d50699c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d5069a0 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a18 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a20 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a14 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a24 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000a4 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000b4 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 08000074 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a1c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a04 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000c8 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 08000068 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d5069ec |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 08000040 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a44 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a5c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a48 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000a8 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000a0 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 0800005c in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-22 |
Jump to invalid address: 0d506a28 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000d0 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 0800006c in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 08000070 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d5069f0 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 08000090 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-22 |
Jump to invalid address: 0d506a58 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a3c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-22 |
Jump to invalid address: 0d506a08 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d506a2c |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Jump to invalid address: 0d5069f8 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 080000c0 in block starting at 08000020 |
RESISTANCE® ~報復の刻~ |
v1.18.1 |
2025-02-23 |
Branch in Jump delay slot at 0800009c in block starting at 08000020 |