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 |
Yu-Gi-Oh! GX Tag Force |
v1.19.3 |
2025-09-10 |
Branch in RSRTComp delay slot at 09e67a5c in block starting at 09e67a5c |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-09-02 |
__KernelStopThread: thread 3093 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-09-01 |
ReadFromHardware: Invalid address 1ead5888 near PC 09e5e56c LR 09e5e56c |
Yu-Gi-Oh! GX Tag Force |
v1.17.1-334-g1786a4ddb |
2025-09-01 |
80630011=sceAtracSetDataAndGetID(59d625c5, 00000000): buffer too small |
Yu-Gi-Oh! GX Tag Force |
v1.19.2 |
2025-07-07 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000382 Tex FragUber TClampST TFuncMod
vs: 01000000:80000920 HWX T Light: LightUberShader Cull
#version 320 es
// Driver: PowerVR Rogue GE8320 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000920 HWX T Light: LightUberShader Cull
in vec3 position;
in vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform uint u_lightControl;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform mediump vec3 u_lightdir0;
uniform mediump vec2 u_lightangle_spotCoef0;
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 vec2 u_lightangle_spotCoef1;
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 vec2 u_lightangle_spotCoef2;
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 vec2 u_lightangle_spotCoef3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
uniform lowp vec3 u_lightspecular3;
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;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out 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(0.0, 0.0, 1.0, 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;
lowp float angle;
uint comp; uint type; float attenuation;
if ((u_lightControl & 0x1u) != 0x0u) {
comp = (u_lightControl >> 0x04u) & 0x3u;
type = (u_lightControl >> 0x06u) & 0x3u;
toLight = u_lightpos0;
if (type != 0x0u) {
toLight -= worldpos;
distance = length(toLight);
toLight /= distance;
attenuation = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
if (type == 0x01u) {
lightScale = attenuation;
} else {
angle = dot(u_lightdir0, toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = attenuation * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
}
} else {
lightScale = 1.0;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
ldot = u_matspecular.a > 0.0 ? pow(max(ldot, 0.0), u_matspecular.a) : 1.0;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u && 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;
}
lightSum1 += u_lightspecular0 * specularColor * ldot * lightScale;
}
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
}
if ((u_ |
Yu-Gi-Oh! GX Tag Force |
v1.19.2 |
2025-07-07 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 10180000:00000382 Tex FragUber TClampST TFuncMod
vs: 00000000:00000002 THR
#version 320 es
// Driver: PowerVR Rogue GE8320 - GLSL 320
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00000000:00000002 THR
in vec4 position;
in highp float fog;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
uniform lowp float u_rotation;
uniform highp vec2 u_fogcoef;
out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
out mediump float v_fogdepth;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
v_fogdepth = fog;
vec4 outPos = mul(u_proj_through, vec4(position.xyz, 1.0));
gl_Position = outPos;
}
|
Yu-Gi-Oh! GX Tag Force |
v1.19.1 |
2025-06-17 |
__KernelStopThread: thread 2431 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-06-15 |
__KernelStopThread: thread 3309 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.12.3 |
2025-05-28 |
__KernelStopThread: thread 1680 does not exist |
Yu-Gi-Oh! GX Tag Force |
v1.17.1-334-g1786a4ddb |
2025-05-30 |
sceDmacMemcpy(dest=04110000, src=094df980, size=557056): overlapping read |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-05-20 |
sceDmacMemcpy(dest=04110000, src=0903d580, size=557056): overlapping read |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-05-13 |
__KernelStopThread: thread 2734 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-05-03 |
__KernelStopThread: thread 2428 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-05-03 |
__KernelStopThread: thread 1717 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-05-02 |
__KernelStopThread: thread 4253 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2025-04-30 |
__KernelStopThread: thread 1928 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-04-24 |
__KernelStopThread: thread 4213 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-04-21 |
__KernelStopThread: thread 2685 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-04-07 |
__KernelStopThread: thread 948 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-04-10 |
__KernelStopThread: thread 2630 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-03-13 |
__KernelStopThread: thread 1845 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18 |
2025-02-22 |
__KernelStopThread: thread 3386 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-02-05 |
__KernelStopThread: thread 1582 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-02-10 |
__KernelStopThread: thread 1652 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2025-01-16 |
__KernelStopThread: thread 851 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2024-12-30 |
__KernelStopThread: thread 2025 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.18.1 |
2024-12-22 |
__KernelStopThread: thread 2412 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-12-21 |
An uneaten prefix at end of block: 0881d350 |
Yu-Gi-Oh! GX Tag Force |
v1.18 |
2024-11-30 |
__KernelStopThread: thread 1289 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-11-26 |
__KernelStopThread: thread 899 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-11-05 |
__KernelStopThread: thread 1177 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-11-01 |
__KernelStopThread: thread 605 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-10-30 |
UNIMPL sceKernelSelfStopUnloadModule(00000001, 00000000, 00000000): game has likely crashed |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-10-16 |
__KernelStopThread: thread 1380 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-10-10 |
__KernelStopThread: thread 2523 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-10-04 |
__KernelStopThread: thread 702 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.13.2 |
2024-09-28 |
__KernelStopThread: thread 2123 does not exist |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-26 |
__KernelStopThread: thread 370 does not exist (ApctlThread deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-23 |
__KernelStopThread: thread 1255 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-19 |
__KernelStopThread: thread 2520 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-15 |
00000000=sceGeEdramSetAddrTranslation(00000000) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-15 |
00000400=sceGeEdramSetAddrTranslation(00000000) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-13 |
__KernelStopThread: thread 736 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-12 |
__KernelStopThread: thread 1411 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-08-31 |
__KernelStopThread: thread 1720 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2024-08-22 |
__KernelStopThread: thread 3278 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-09-15 |
Video out requested, not supported: mode=0 size=0,0 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-08-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-08-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-31 |
Branch in RSRTComp delay slot at 0888bddc in block starting at 0888bdcc |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-31 |
Branch in RSRTComp delay slot at 0888bddc in block starting at 0888bdd0 |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2024-07-31 |
__KernelStopThread: thread 3037 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-17 |
80000107=sceDisplaySetFrameBuf(00000000, 0, 0, 0): must change latched framebuf first |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_g999_Base): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_g997_Save_test): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_g998_Result_test): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_g000_Field): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_g001_Demo): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_m001_Title): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_m002_Movie): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_m000_Boot): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-15 |
sceKernelCreateThread(name=god_menu): unsupported attributes 00000006 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-14 |
__KernelStopThread: thread 1233 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-13 |
__KernelStopThread: thread 653 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-07-08 |
__KernelStopThread: thread 658 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1-669-gd298c6f6f5 |
2024-06-23 |
__KernelStopThread: thread 782 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-06-16 |
__KernelStopThread: thread 1946 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-06-07 |
__KernelStopThread: thread 4073 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.15.4 |
2024-05-20 |
__KernelStopThread: thread 1684 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-05-13 |
__KernelStopThread: thread 1857 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-05-09 |
80630011=sceAtracSetDataAndGetID(7bd26dc9, 00000031): buffer too small |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-05-06 |
__KernelStopThread: thread 1840 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-05-05 |
Unimplemented HLE function sceNetInetSelect |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-05-05 |
Unimplemented HLE function sceNetInetInetAddr |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-04-11 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-04-11 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
Yu-Gi-Oh! GX Tag Force |
v1.9.3-80-g73bf6098e |
2024-04-04 |
__KernelStopThread: thread 334 does not exist |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-03-24 |
__KernelStopThread: thread 1911 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-03-12 |
Rendering from framebuf with offset 040d43c0 -> 040d4000+480x0 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-03-12 |
00000400=sceGeEdramSetAddrTranslation(00001000) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-03-10 |
WriteToHardware: Invalid address ffffbe32 near PC 08000000 LR 08000000 |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-03-01 |
__KernelStopThread: thread 970 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17.1 |
2024-10-30 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2024-02-09 |
__KernelStopThread: thread 284 does not exist (ApctlThread deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.17 |
2024-01-30 |
80630011=sceAtracSetDataAndGetID(00328e7a, 00000031): buffer too small |
Yu-Gi-Oh! GX Tag Force |
v1.8.0 |
2024-05-23 |
Failed to truncate file. |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2024-01-18 |
__KernelStopThread: thread 2975 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2024-01-03 |
__KernelStopThread: thread 1980 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.15.3 |
2023-12-26 |
__KernelStopThread: thread 1195 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2023-12-14 |
__KernelStopThread: thread 936 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2023-12-11 |
__KernelStopThread: thread 2938 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.1 |
2023-12-04 |
__KernelStopThread: thread 2339 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.1 |
2023-12-03 |
__KernelStopThread: thread 919 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.1 |
2023-12-03 |
__KernelStopThread: thread 1234 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.1 |
2023-12-02 |
__KernelStopThread: thread 3159 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.1 |
2023-11-24 |
__KernelStopThread: thread 3356 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.1 |
2023-11-13 |
__KernelStopThread: thread 621 does not exist (helper deleted) |
Yu-Gi-Oh! GX Tag Force |
v1.16.6 |
2023-11-12 |
__KernelStopThread: thread 2218 does not exist (helper deleted) |