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 |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-24 |
ReadFromHardware: Invalid address bf800068 near PC 08000000 LR 08000000 |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-24 |
ReadFromHardware: Invalid address 0a2dcf18 near PC 08000000 LR 08000000 |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Bad vertex address 0ba075f5! |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Bad vertex address 02207c21! |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Bad vertex address 01bfb931! |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Bad vertex address 0bbfab01! |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0062000d) P: s8 C: ? T: u8 (size: 3) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00c2002c) P: s8 N: s8 C: ? (through) (size: 6) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00020029) P: s8 N: s8 C: ? T: u8 (size: 6) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00420060) P: s8 N: f (size: 16) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00200012) P: s8 C: 565 T: u16 (size: 10) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0040001f) P: s8 C: 8888 T: f (size: 16) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00200013) P: s8 C: 565 T: f (size: 16) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00200008) P: s8 C: ? (size: 3) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0042002b) P: s8 N: s8 C: ? T: f (size: 8) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0023000a) P: s8 C: ? T: u16 (size: 4) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vulkan error in shader compilation: info: WARNING: 0:57: 'layout' : useless application of layout qualifier
ERROR: 0:133: 'normal' : undeclared identifier
ERROR: 0:133: 'z' : vector swizzle selection out of range
ERROR: 0:133: '' : compilation terminated
ERROR: 3 compilation errors. No code generated.
/ code: #version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_420pack : enable
layout (std140, set = 0, binding = 3) uniform baseVars {
mat4 proj_mtx;
mat4 proj_through_mtx;
mat3x4 view_mtx;
mat3x4 world_mtx;
mat3x4 tex_mtx;
vec4 uvscaleoffset;
vec4 depthRange;
vec2 fogcoef;
float stencilReplace;
vec4 matambientalpha;
uint spline_counts;
uint depal_mask_shift_off_fmt;
int pad2;
int pad3;
vec4 cullRangeMin;
vec4 cullRangeMax;
vec3 fogcolor;
vec3 texenv;
ivec4 alphacolorref;
ivec4 alphacolormask;
vec3 blendFixA;
vec3 blendFixB;
vec4 texclamp;
vec2 texclampoff;
} base;
layout (std140, set = 0, binding = 4) uniform lightVars {
vec4 u_ambient;
vec3 matdiffuse;
vec4 matspecular;
vec3 matemissive;
vec3 pos[4];
vec3 dir[4];
vec3 att[4];
vec2 angle_spotCoef[4];
vec3 ambient[4];
vec3 diffuse[4];
vec3 specular[4];
} light;
layout (location = 0) in vec3 position;
layout (location = 5) in vec4 color0;
layout (location = 1) flat out vec4 v_color0;
layout (location = 2) flat out vec3 v_color1;
struct TessData {
vec4 pos;
vec4 uv;
vec4 color;
};
layout (std430, set = 0, binding = 6) readonly buffer s_tess_data {
TessData data[];
} tess_data;
layout (std430) struct TessWeight {
vec4 basis;
vec4 deriv;
};
layout (std430, set = 0, binding = 7) readonly buffer s_tess_weights_u {
TessWeight data[];
} tess_weights_u;
layout (std430, set = 0, binding = 8) readonly buffer s_tess_weights_v {
TessWeight data[];
} tess_weights_v;
vec2 tess_sample(in vec2 points[16], mat4 weights) {
vec2 pos = vec2(0.0);
pos += weights[0][0] * points[0];
pos += weights[0][1] * points[1];
pos += weights[0][2] * points[2];
pos += weights[0][3] * points[3];
pos += weights[1][0] * points[4];
pos += weights[1][1] * points[5];
pos += weights[1][2] * points[6];
pos += weights[1][3] * points[7];
pos += weights[2][0] * points[8];
pos += weights[2][1] * points[9];
pos += weights[2][2] * points[10];
pos += weights[2][3] * points[11];
pos += weights[3][0] * points[12];
pos += weights[3][1] * points[13];
pos += weights[3][2] * points[14];
pos += weights[3][3] * points[15];
return pos;
}
vec3 tess_sample(in vec3 points[16], mat4 weights) {
vec3 pos = vec3(0.0);
pos += weights[0][0] * points[0];
pos += weights[0][1] * points[1];
pos += weights[0][2] * points[2];
pos += weights[0][3] * points[3];
pos += weights[1][0] * points[4];
pos += weights[1][1] * points[5];
pos += weights[1][2] * points[6];
pos += weights[1][3] * points[7];
pos += weights[2][0] * points[8];
pos += weights[2][1] * points[9];
pos += weights[2][2] * points[10];
pos += weights[2][3] * points[11];
pos += weights[3][0] * points[12];
pos += weights[3][1] * points[13];
pos += weights[3][2] * points[14];
pos += weights[3][3] * points[15];
return pos;
}
vec4 tess_sample(in vec4 points[16], mat4 weights) {
vec4 pos = vec4(0.0);
pos += weights[0][0] * points[0];
pos += weights[0][1] * points[1];
pos += weights[0][2] * points[2];
pos += weights[0][3] * points[3];
pos += weights[1][0] * points[4];
pos += weights[1][1] * points[5];
pos += weights[1][2] * points[6];
pos += weights[1][3] * points[7];
pos += weights[2][0] * points[8];
pos += weights[2][1] * points[9];
pos += weights[2][2] * points[10];
pos += weights[2][3] * points[11];
pos += weights[3][0] * points[12];
pos += weights[3][1] * points[13];
pos += weights[3][2] * points[14];
pos += weights[3][3] * points[15];
return pos;
}
struct Tess {
vec3 pos;
vec4 col;
vec3 nrm;
};
void tessellate(out Tess tess) {
ivec2 point_pos = ivec2(position.z, normal.z) * 3;
ivec2 weight_idx = ivec2(position.xy);
vec3 _pos[16];
vec2 _tex[16]; |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00000006) P: s8 C: ? T: u16 (size: 4) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00e0002b) P: s8 N: s8 C: ? T: f (through) (size: 8) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00030009) P: s8 C: ? T: u8 (size: 3) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00420002) P: s8 T: u16 (size: 8) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0000002c) P: s8 N: s8 C: ? (size: 6) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00620002) P: s8 T: u16 (size: 8) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0000004b) P: s8 N: s16 C: ? T: f (size: 12) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00c30033) P: s8 N: s8 C: 565 T: f (through) (size: 16) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00000026) P: s8 N: s8 C: ? T: u16 (size: 6) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00200017) P: s8 C: 5551 T: f (size: 16) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0020000f) P: s8 C: ? T: f (size: 4) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00620019) P: s8 C: 4444 T: u8 (size: 8) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00c30009) P: s8 C: ? T: u8 (through) (size: 3) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00030029) P: s8 N: s8 C: ? T: u8 (size: 6) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00230002) P: s8 T: u16 (size: 8) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Bad bounding box data: c1000a |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00200006) P: s8 C: ? T: u16 (size: 4) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0020000b) P: s8 C: ? T: f (size: 4) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00220010) P: s8 C: 565 (size: 6) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (00400007) P: s8 C: ? T: f (size: 4) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Vertices without position found: (0020000c) P: s8 C: ? (size: 3) |
| 現代大戦略 ~一触即発・軍事バランス崩壊~ |
v1.9.0 |
2026-06-22 |
Bad vertex address 01b24350! |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-22 |
ReadFromHardware: Invalid address 0b48d4d0 near PC 08000000 LR 08000000 |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-22 |
ReadFromHardware: Invalid address bf800068 near PC 08a812e8 LR 08a81bac |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-22 |
WriteToHardware: Invalid address 000000f0 near PC 08a812e8 LR 08a81bac |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-22 |
ReadFromHardware: Invalid address 0b46f180 near PC 08a812e8 LR 08a81bac |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-22 |
WriteToHardware: Invalid address 000000f0 near PC 08abe320 LR 08a813b4 |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-22 |
ReadFromHardware: Invalid address 0b46f180 near PC 08abe320 LR 08a813b4 |
| The 3rd Birthday |
v1.9.0 |
2026-06-21 |
sceDmacMemcpy(dest=090d6d40, src=09cef040, size=661952): overlapping read |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-21 |
WriteToHardware: Invalid address 000000f0 near PC 08a76c00 LR 08ad439c |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-21 |
ReadFromHardware: Invalid address bf800068 near PC 08a60e74 LR 08abee18 |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-21 |
WriteToHardware: Invalid address 000000ce near PC 08000000 LR 08000000 |
| 白騎士物語® -episode.portable-
ドグマ・ウォーズ |
v1.9.0 |
2026-06-25 |
00000000=sceUtilityScreenshotInitStart(09c920bc) |
| 大戦略ポータブル |
v1.9.0 |
2026-06-20 |
Unknown GetPointer 00000000 PC 088872a0 LR 088872a0 |
| The 3rd Birthday |
v1.9.0 |
2026-06-20 |
sceDmacMemcpy(dest=09262c40, src=09cef040, size=1536256): overlapping read |
| God of War®: Ghost of Sparta |
v1.9.0 |
2026-06-19 |
ReadFromHardware: Invalid address 0b4284d0 near PC 08000000 LR 08000000 |
| 大戦略ポータブル |
v1.9.0 |
2026-06-26 |
Unknown GetPointer 00000000 PC 0880b184 LR 0880b184 |
| ナルティメットインパクト |
v1.9.0 |
2026-06-19 |
00000000=sceUtilityScreenshotInitStart(09d25d28) |
| ナルティメットインパクト |
v1.9.0 |
2026-06-19 |
00000000=sceUtilityScreenshotInitStart(09d25d08) |
| FIFA 13 |
v1.9.0 |
2026-06-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147569052 |
| FIFA 13 |
v1.9.0 |
2026-06-18 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147557848 |
| FIFA 13 |
v1.9.0 |
2026-06-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=09564440, pos=1, access=1, data=2, text=2 |
| FIFA 13 |
v1.9.0 |
2026-06-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d853c4, pos=1, access=1, data=1, text=1 |
| FIFA 13 |
v1.9.0 |
2026-06-18 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167508272 |
| FIFA 13 |
v1.9.0 |
2026-06-18 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 149087756 |
| The 3rd Birthday |
v1.9.0 |
2026-06-18 |
sceDmacMemcpy(dest=09182780, src=09327900, size=1511680): overlapping read |
| The 3rd Birthday |
v1.9.0 |
2026-06-17 |
sceDmacMemcpy(dest=090fd4c0, src=093b8b00, size=1264256): overlapping read |
| LUNAR -HARMONY of SILVER STAR- |
v1.9.0 |
2026-06-17 |
Unknown GetPointer 00000000 PC 088fdf3c LR 088fdf3c |
| The 3rd Birthday |
v1.9.0 |
2026-06-16 |
sceDmacMemcpy(dest=08400000, src=09cef040, size=192256): overlapping read |
| 真・三國無双6 Special |
v1.9.0 |
2026-06-16 |
sceDmacMemcpy(dest=09954620, src=09ece440, size=5664): overlapping read |
| The 3rd Birthday |
v1.9.0 |
2026-06-17 |
sceDmacMemcpy(dest=093acc40, src=09cef040, size=1676224): overlapping read |
| R-TYPE TACTICS |
v1.9.0 |
2026-06-16 |
sceDmacMemcpy(dest=09812c10, src=091fbc90, size=408): overlapping read |
| Radiant Mythology |
v1.9.0 |
2026-06-13 |
Ignoring possible render to texture at 04172000 +0x80 / 480x272 |
| 太閤立志伝Ⅴ |
v1.9.0 |
2026-06-12 |
sceDmacMemcpy(dest=041a6dc0, src=093435a0, size=1024): overlapping read |
| NEED FOR SPEED™ UNDERCOVER |
v1.9.0 |
2026-06-12 |
Jump to invalid address: 03188e70 |
| NEED FOR SPEED™ UNDERCOVER |
v1.9.0 |
2026-06-12 |
ReadFromHardware: Invalid address 1145141c near PC 08000000 LR 08000000 |
| NEED FOR SPEED™ UNDERCOVER |
v1.9.0 |
2026-06-12 |
WriteToHardware: Invalid address 00004f78 near PC 08000000 LR 08000000 |
| Radiant Mythology |
v1.9.0 |
2026-06-11 |
Render to area containing texture at 04178000 +0x16 |
| 太閤立志伝Ⅴ |
v1.9.0 |
2026-06-11 |
Branch in RSRTComp delay slot at 0800009c in block starting at 08000088 |
| 太閤立志伝Ⅴ |
v1.9.0 |
2026-06-11 |
MIPSCompileOp: Invalid instruction 46657661 |
| 太閤立志伝Ⅴ |
v1.9.0 |
2026-06-11 |
MIPSCompileOp: Invalid instruction 42000000 |
| 真・三國無双5 Special |
v1.9.0 |
2026-06-09 |
WriteToHardware: Invalid address ffffffff near PC 08ab0aa0 LR 08ab0aa0 |
| Radiant Mythology |
v1.9.0 |
2026-06-07 |
Ignoring possible render to texture at 04172000 +0x64 / 480x272 |
| 雅恋 ~MIYAKO~ あわゆきのうたげ |
v1.9.0 |
2026-06-06 |
Unknown GetPointer 00000000 PC 08901d7c LR 08901d7c |
| Radiant Mythology |
v1.9.0 |
2026-06-07 |
Texture cache ran out of GPU memory; switching to low memory mode |
| 大航海時代Ⅳ~ROTA NOVA~ |
v1.9.0 |
2026-06-01 |
ReadFromHardware: Invalid address 00014000 near PC 00010000 LR 088d980c |
| 大航海時代Ⅳ~ROTA NOVA~ |
v1.9.0 |
2026-06-01 |
ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08903ffc |
| 大航海時代Ⅳ~ROTA NOVA~ |
v1.9.0 |
2026-06-01 |
ReadFromHardware: Invalid address 71c3498f near PC 71c3498f LR 08863f84 |
| 遊戯王デュエルモンスターズGX タッグフォース 2 |
v1.9.0 |
2026-05-31 |
Unknown GetPointer 00000000 PC 088401b0 LR 088401b0 |
| ガンダム メモリーズ ~戦いの記憶~ |
v1.9.0 |
2026-05-31 |
WriteToHardware: Invalid address 00001664 near PC 08925a7c LR 088ff100 |
| FIFA 13 |
v1.9.0 |
2026-05-31 |
Unknown GetPointer 00000189 PC 08ddf20c LR 08b590ec |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNpAuth': 0xd99455dd |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNpAuth': 0xcd86a656 |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNpAuth': 0x72bb0467 |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNpAuth': 0x3f1c1f70 |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNp': 0xbb069a87 |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNp': 0x633b5f71 |
| ガンダムバトルクロニクル |
v1.9.0 |
2026-05-31 |
Unknown syscall in known module 'sceNp': 0x1d60ae4b |
| Brandish The Dark Revenant |
v1.9.0 |
2026-05-29 |
sceDmacMemcpy(dest=04192a00, src=08daea10, size=131072): overlapping read |
| SBK® Superbike World Championship |
v1.9.0 |
2026-05-28 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24d70, 09002a00): duplicate handler |
| SBK® Superbike World Championship |
v1.9.0 |
2026-05-28 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24d70, 096469c0): duplicate handler |
| SBK® Superbike World Championship |
v1.9.0 |
2026-05-28 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24d70, 09360300): duplicate handler |
| SBK® Superbike World Championship |
v1.9.0 |
2026-05-28 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24d70, 09333900): duplicate handler |