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 |
英雄伝説 空の軌跡 the 3rd |
v1.14.4 |
2023-05-08 |
sceDmacMemcpy(dest=041fa900, src=08e3b180, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.14.4 |
2023-05-02 |
sceDmacMemcpy(dest=041fb900, src=08e94e20, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.14.4 |
2023-04-29 |
sceDmacMemcpy(dest=041cc100, src=08ebc980, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.14.4 |
2023-04-28 |
sceDmacMemcpy(dest=041f8100, src=08e418a0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.14.4 |
2023-04-28 |
sceDmacMemcpy(dest=041d4900, src=08e3b9c0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.14.4 |
2023-04-27 |
sceDmacMemcpy(dest=041ff100, src=08ec7940, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-04-23 |
sceIoIoctl(disc0:/sce_lbn07bf27_size0x3597a, 0101000a, 09faf8c0, 4, 00000000, 0) |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-04-21 |
sceDmacMemcpy(dest=041c5100, src=08e34640, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-04-21 |
sceDmacMemcpy(dest=041c3500, src=08e38840, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.4.2-425-g7a7ccee5e |
2023-03-23 |
Error in shader compilation: info: 0(158) : error C1008: undefined variable "u_proj"
0(159) : error C1008: undefined variable "col"
0(175) : error C1008: undefined variable "col"
0(178) : error C1008: undefined variable "col"
0(179) : error C1008: undefined variable "col"
0(190) : error C1008: undefined variable "col"
0(193) : error C1008: undefined variable "col"
0(194) : error C1008: undefined variable "col"
0(205) : error C1008: undefined variable "col"
0(208) : error C1008: undefined variable "col"
0(209) : error C1008: undefined variable "col"
0(220) : error C1008: undefined variable "col"
0(223) : error C1008: undefined variable "col"
0(224) : error C1008: undefined variable "col"
0(226) : error C1008: undefined variable "tex"
/ 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 * 4 + j];
}
}
return pos;
}
uniform int u_spline_count_v;
uniform int u_spline_type_u;
uniform int u_spline_type_v;
void spline_knot(ivec2 num_patches, ivec2 type, out vec2 knot[6], ivec2 patch_pos) {
for (int i = 0; i < 6; ++i) {
knot[i] = vec2(float(i + patch_pos.x - 2), float(i + patch_pos.y - 2));
}
if ((type.x & 1) != 0) {
if (patch_pos.x <= 2)
knot[0].x = 0.0;
if (patch_pos.x <= 1)
knot[1].x = 0.0;
}
if ((type.x & 2) != 0) {
if (patch_pos.x >= (num_patches.x - 2))
knot[5].x = float(num_patches.x);
if (pa |
英雄伝説 空の軌跡 the 3rd |
v1.14.4-944-g99c11901f |
2023-03-21 |
ReadFromHardware: Invalid address 0a000000 near PC 088f8944 LR 088f8958 |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=041fcd00, src=08eafbc0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=041fed00, src=08f0d0a0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=04169100, src=08ffe980, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=0416e100, src=08edd4a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=041fed00, src=08fa8f40, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=041fed00, src=08ed6140, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=0416a100, src=08ed5d80, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=041ff100, src=0901f280, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=0416b100, src=09026200, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=0416a100, src=08f87120, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-09 |
sceDmacMemcpy(dest=041f3100, src=08e3b5a0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=041f8d00, src=08e9ae20, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=0416e100, src=08f3f040, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=0416c100, src=08fdf5a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=041fed00, src=08ed6aa0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=041fed00, src=08f18960, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=041f8d00, src=08fda800, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=0416e100, src=08f1d100, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-08 |
sceDmacMemcpy(dest=041ff100, src=08f4bd00, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ca100, src=08f35740, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041c6100, src=08f35320, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-05-01 |
sceDmacMemcpy(dest=041a6100, src=08eb4680, size=65536): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041c6100, src=08ef4ee0, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041e0100, src=09044520, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04169900, src=08f250e0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041f9d00, src=08f070a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04166100, src=08edc280, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08efd280, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08f07620, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08edb840, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04171100, src=08f81360, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04171100, src=08f88460, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=0416e100, src=08ef3f60, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=0416e100, src=08ef3b40, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041f9d00, src=08e9b240, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08ec3100, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08ed2ec0, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04162100, src=08eadba0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04162100, src=08efa720, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08ef6160, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08ec6da0, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041ff100, src=08f71420, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041fb100, src=08fedb20, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=041fb100, src=08ee9020, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-07 |
sceDmacMemcpy(dest=04165100, src=08f10c40, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=041df100, src=08efe740, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=041d2100, src=08e356c0, size=65536): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=0416f100, src=08e35ae0, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=0416c100, src=08eb1560, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=0416c100, src=08ed4b80, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=04163100, src=08f42140, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=04162100, src=08f86c60, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=04164100, src=08e9d500, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=041d8100, src=08e39080, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-06 |
sceDmacMemcpy(dest=041ed100, src=08e3a940, size=65536): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=0416e100, src=08f02480, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=04164100, src=08e92f60, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=04166100, src=08fa3e80, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=04166100, src=08f978a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=0417e100, src=08fadf40, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=04176100, src=08f340e0, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=04162100, src=08f33260, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=0416e100, src=08ff3680, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=041fcd00, src=08eb20e0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=04168100, src=08ea38a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=041f8900, src=08e61540, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-05 |
sceDmacMemcpy(dest=041ff100, src=08e9ca80, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=0416d100, src=08f70f40, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=0416d100, src=08f16ac0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=041f3100, src=0901d340, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=041f3100, src=0901a340, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=0416d100, src=08ebf440, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04170100, src=08f70660, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04170100, src=08ef1c00, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04166100, src=08ecd400, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04166100, src=08edfec0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04169100, src=08e8b7c0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=0416f100, src=09020ee0, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04162100, src=0900e7a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-04 |
sceDmacMemcpy(dest=04162100, src=09020fa0, size=16384): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041fed00, src=08f2ca80, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041fed00, src=08f32b60, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041fed00, src=08f2c240, size=4096): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041ff100, src=08e59f80, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041ff100, src=08f0b8c0, size=2048): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041fd900, src=08e44600, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041c2100, src=08e39080, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041c0100, src=08e373a0, size=8192): overlapping read |
英雄伝説 空の軌跡 the 3rd |
v1.9.0 |
2023-03-03 |
sceDmacMemcpy(dest=041f8100, src=08e41060, size=8192): overlapping read |