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 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.17.1 |
2024-03-22 |
Unimplemented HLE function sceNetResolverTerm |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.17.1 |
2024-03-22 |
Unimplemented HLE function sceUtilityHtmlViewerInitStart |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.4.2-425-g7a7ccee5e |
2023-07-23 |
Error in shader program link: info: The fragment shader uses varying v_color1, but previous shader does not write to it.
Out of resource error.
/ fs: #version 330
#define lowp
#define mediump
#define highp
in vec4 v_color0;
in vec3 v_color1;
out vec4 fragColor0;
void main() {
vec4 s = vec4(v_color1, 0.0);
vec4 v = v_color0 + s;
fragColor0 = v;
}
/ vs: #version 330
#define lowp
#define mediump
#define highp
in vec4 position;
in lowp vec4 color0;
uniform mat4 u_proj_through;
out lowp vec4 v_color0;
void main() {
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.4.2-425-g7a7ccee5e |
2023-05-22 |
Error in shader compilation: info: ERROR: 0:158: 'u_proj' : undeclared identifier
ERROR: 0:159: 'col' : undeclared identifier
ERROR: 0:175: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:178: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:179: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:190: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:193: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:194: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:205: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:208: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:209: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:220: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:223: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:224: 'rgb' : field selection requires structure, vector, or matrix on left hand side
ERROR: 0:226: 'tex' : undeclared identifier
/ code: #version 330
#define lowp
#define mediump
#define highp
in mediump vec4 w1, w2;
in vec3 position;
in mediump vec3 normal;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
uniform mat4 u_world;
uniform mat4 u_view;
uniform mediump mat4 u_texmtx;
uniform mat4 u_bone0;
uniform mat4 u_bone1;
uniform mat4 u_bone2;
uniform mat4 u_bone3;
uniform mat4 u_bone4;
uniform mat4 u_bone5;
uniform mat4 u_bone6;
uniform mat4 u_bone7;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump float u_lightangle0;
uniform mediump float u_lightspotCoef0;
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 mediump vec3 u_lightdir1;
uniform mediump float u_lightangle1;
uniform mediump float u_lightspotCoef1;
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 mediump vec3 u_lightdir2;
uniform mediump float u_lightangle2;
uniform mediump float u_lightspotCoef2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform lowp vec3 u_lightspecular2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform mediump vec3 u_lightdir3;
uniform mediump float u_lightangle3;
uniform mediump float u_lightspotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
uniform lowp vec4 u_ambient;
uniform lowp vec4 u_matspecular;
uniform lowp vec3 u_matemissive;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
uniform sampler1D u_tess_pos_tex;
uniform sampler1D u_tess_tex_tex;
uniform sampler1D u_tess_col_tex;
uniform int u_spline_count_u;
vec2 tess_sample(in vec2 points[16], in vec2 weights[4]) {
vec2 pos = vec2(0.0);
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j) {
float f = weights[j].x * weights[i].y;
if (f != 0.0)
pos = pos + f * points[i * 4 + j];
}
}
return pos;
}
vec3 tess_sample(in vec3 points[16], in vec2 weights[4]) {
vec3 pos = vec3(0.0);
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j) {
float f = weights[j].x * weights[i].y;
if (f != 0.0)
pos = pos + f * points[i * 4 + j];
}
}
return pos;
}
vec4 tess_sample(in vec4 points[16], in vec2 weights[4]) {
vec4 pos = vec4(0.0);
for (int i = 0; i < 4; ++i) {
for (int j = 0; j < 4; ++j) {
float f = weights[j].x * weights[i].y;
if (f != 0.0)
pos = pos + f * points[i |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.12.3 |
2023-03-16 |
sceKernelCreateThread(name=scePsmf_library): unsupported attributes 00000006 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-02-22 |
MIPSCompileOp: Invalid instruction 01b95a78 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-02-22 |
Branch in branch delay slot at 08b95a8c with different target |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-02-22 |
Branch in branch delay slot at 08b9583c with different target |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-02-22 |
Branch in branch delay slot at 08b95834 with different target |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-02-22 |
MIPSCompileOp: Invalid instruction 4b000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-02-22 |
MIPSCompileOp: Invalid instruction 4a000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-01-24 |
00000400=sceGeEdramSetAddrTranslation(00000400) |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-01-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=1, data=2, text=2 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-01-24 |
Rendering to framebuffer offset at 040cc000 +256x0 (stride 512) |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.14.4 |
2023-01-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.11.3-828-g15a2373f0 |
2022-05-26 |
Jump to invalid address: 02543e40 PC 08b9b4d0 LR 0881569c |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.12.3 |
2022-03-31 |
sceDmacMemcpy(dest=040cc000, src=094c5e90, size=278528): overlapping read |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2022-03-19 |
WriteToHardware: Invalid address 00000470 near PC 0891d734 LR 0891d4ec |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2022-03-18 |
ReadFromHardware: Invalid address 00177550 near PC 08000000 LR 08000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.12.3 |
2022-01-19 |
WriteToHardware: Invalid address 00000470 near PC 08911158 LR 08910b58 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.12.2 |
2021-10-18 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2021-09-27 |
WriteToHardware: Invalid address 00000470 near PC 089111b0 LR 08910b58 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2021-09-27 |
WriteToHardware: Invalid address 00000470 near PC 08911564 LR 08910b58 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2021-09-27 |
WriteToHardware: Invalid address 00000470 near PC 089113b8 LR 08910b58 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2021-09-09 |
Unknown GetPointer 00000000 PC 0885c13c LR 0885c13c |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2021-09-04 |
Unknown GetPointer 00000000 PC 089221e4 LR 089221e4 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.6.3 |
2021-01-24 |
sceDmacMemcpy(dest=040cc000, src=09509ea0, size=278528): overlapping read |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.12.3 |
2023-03-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff6a4, pos=0, access=1, data=1, text=1 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.3 |
2020-02-27 |
Unknown GE command : edffffff |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.3-230-g97c81ac5a |
2020-01-22 |
Unknown syscall in known module 'sceNpAuth': 0x3f1c1f70 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2023-12-31 |
WriteToHardware: Invalid address 00000470 near PC 08000000 LR 08000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.6.3-492-g9fddfff66 |
2019-01-11 |
GL ran out of GPU memory; switching to low memory mode |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.5.4 |
2018-08-14 |
sceDmacMemcpy(dest=040cc000, src=09591700, size=278528): overlapping read |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.6.3 |
2021-01-24 |
sceDmacMemcpy(dest=040cc000, src=095096e0, size=278528): overlapping read |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.0 |
2021-09-19 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 0881563c |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.0-33-ge6af3cf |
2015-05-09 |
sceDmacMemcpy(dest=040cc000, src=09591700, size=278528): overlapping read |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.4.2-575-g0c7ae95df |
2022-11-26 |
Loading module sceMpeg_library with version 0104, devkit 00000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.4.2-575-g0c7ae95df |
2023-05-21 |
Loading module sceMpegbase_Driver with version 0103, devkit 00000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.4.2-575-g0c7ae95df |
2022-11-26 |
Loading module sceVideocodec_Driver with version 0103, devkit 00000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.6.3-21-g5f57ecb |
2023-07-23 |
Loading module sceAudiocodec_Driver with version 0103, devkit 00000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.6.3-21-g5f57ecb |
2023-11-23 |
Loading module sceSAScore with version 0103, devkit 00000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.6.3-21-g5f57ecb |
2023-11-23 |
Loading module sceATRAC3plus_Library with version 0103, devkit 00000000 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.4 |
2024-10-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.9.4 |
2024-10-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
Ys -THE ARK OF NAPISHTIM- SPECIAL VERSION |
v1.4.2-425-g7a7ccee5e |
2022-11-25 |
sceDmacMemcpy(dest=040cc000, src=094c56d0, size=278528): overlapping read |