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 EATER 2 |
v1.14.4 |
2023-05-13 |
Replacement rowPitch=192, but w=1024 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-05-13 |
Replacement rowPitch=384, but w=1024 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-05-13 |
Replacement rowPitch=384, but w=512 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-05-12 |
Replacement rowPitch=128, but w=512 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-03-11 |
Replacement rowPitch=1024, but w=2048 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-03-11 |
Replacement rowPitch=512, but w=1024 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-03-11 |
Replacement rowPitch=256, but w=2048 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-05-13 |
Replacement rowPitch=1024, but w=4096 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-05-13 |
Replacement rowPitch=512, but w=2048 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-03-11 |
Replacement rowPitch=256, but w=512 (level=0) |
GOD EATER 2 |
v1.14.4 |
2023-03-09 |
Unknown GetPointer b21ff662 PC 088229d8 LR 088229e0 |
GOD EATER 2 |
v1.14.4 |
2023-05-14 |
Replacement rowPitch=256, but w=1024 (level=0) |
GOD EATER 2 |
v1.11.3 |
2023-01-28 |
Error in shader compilation: info: Vertex shader compilation failed.
ERROR: 0:180: 'outerProduct' : no matching overloaded function found
ERROR: 0:180: '=' : cannot convert from 'const float' to '4X4 matrix of float'
ERROR: 2 compilation errors. No code generated.
00080000:00007b1c HWX C T N Fog Tex Spline TessC TessT TessRevN
#version 300 es
// Adreno (TM) 306 - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
in vec3 position;
in mediump vec3 normal;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform lowp vec4 u_matambientalpha;
uniform highp vec2 u_fogcoef;
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;
uniform sampler2D u_tess_points;
uniform sampler2D u_tess_weights_u;
uniform sampler2D u_tess_weights_v;
uniform int u_spline_counts;
vec2 tess_sample(in vec2 points[16], mat4 weights) {
vec2 pos = vec2(0.0, 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, 0.0, 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, 0.0, 0.0, 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;
vec2 tex;
vec4 col;
};
void tessellate(out Tess tess) {
ivec2 point_pos = ivec2(position.z, normal.z);
ivec2 weight_idx = ivec2(position.xy);
vec3 _pos[16];
vec2 _tex[16];
vec4 _col[16];
int index_u, index_v;
index_u = (0 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[0] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
_tex[0] = texelFetch(u_tess_points, ivec2(index_u + u_spline_counts, index_v), 0).xy;
_col[0] = texelFetch(u_tess_points, ivec2(index_u + u_spline_counts * 2, index_v), 0).rgba;
index_u = (1 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[1] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
_tex[1] = texelFetch(u_tess_points, ivec2(index_u + u_spline_counts, index_v), 0).xy;
_col[1] = texelFetch(u_tess_points, ivec2(index_u + u_spline_counts * 2, index_v), 0).rgba;
index_u = (2 + point_pos.x);
index_v = (0 + point_pos.y);
_pos[2] = texelFetch(u_tess_points, ivec2(index_u, index_v), 0).xyz;
_ |
GOD EATER 2 |
v1.14.2 |
2023-01-21 |
Unknown GE command : fee38e00 |
GOD EATER 2 |
v1.9.0 |
2022-12-24 |
WriteToHardware: Invalid address 00000000 near PC 08000000 LR 08000000 |
GOD EATER 2 |
v1.9.0 |
2022-12-24 |
ReadFromHardware: Invalid address 00f4f9d8 near PC 08000000 LR 08000000 |
GOD EATER 2 |
v1.13.2 |
2022-12-17 |
UNIMPL sceNetAdhocDiscoverInitStart(0965f370) at 08bd0588 |
GOD EATER 2 |
v1.13.2 |
2022-12-16 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULJM05410INST/DATAPA, 09f95d10, 00000002) |
GOD EATER 2 |
v1.13.2 |
2022-12-16 |
sceIoChstat: change attr to 0000 requested |
GOD EATER 2 |
v1.13.2 |
2022-12-10 |
Video out requested, not supported: mode=0 size=0,0 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 153291632 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144316544 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771664 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142702700 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0xe9b3061e |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x86255ada |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x8125221d |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x278c0df5 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=08228644, firstSym=082284c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228654, firstSym=082284e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08228658, firstSym=082284e8, varData=00000000, extra=00000000
|
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Crazy varData address 01011006, skipping rest of module |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Ignoring func export sceNetIfhandle/fd8585e1, already implemented in HLE. |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Ignoring func export sceNetIfhandle/c80181a2, already implemented in HLE. |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x369ed59d |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x39810265 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0xb736e9ff |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0xaf36d708 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x89b3d48c |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x56c039b5 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x1fb15a32 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x58b1f937 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x4e3a1105 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x3f53e640 |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0x28b6489c |
GOD EATER 2 |
v1.10-6-g8ac4efd3c |
2022-09-28 |
Unknown syscall in known module 'ThreadManForKernel': 0xd6da4ba1 |
GOD EATER 2 |
v1.13.2 |
2022-09-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08c734c4, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.13.2 |
2022-09-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08c734c4, pos=0, access=1, data=1, text=1 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=08b10000, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.13 |
2022-07-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.13 |
2022-07-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
GOD EATER 2 |
v1.13 |
2022-07-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.13 |
2022-07-31 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=1, text=1 |
GOD EATER 2 |
v1.11.3 |
2022-06-18 |
WriteToHardware: Invalid address 0015c472 near PC 08931d1c LR 088c0074 |
GOD EATER 2 |
v1.12.3 |
2022-05-14 |
sceKernelCreateThread(name=god_g998_Result_test): unsupported attributes 00000006 |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/27f6e642, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/574b6fbc, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/dcc80c2f, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/0da7535e, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/3aea8cb6, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/57fcb733, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/681e61a7, already implemented in HLE. |
GOD EATER 2 |
v1.10.2 |
2022-04-05 |
Ignoring func export sceLibFont/099ef33c, already implemented in HLE. |
GOD EATER 2 |
v1.12.2 |
2022-03-28 |
UNIMPL sceNetAdhocDiscoverInitStart(09537570) at 08bd0588 |
GOD EATER 2 |
v1.12.2 |
2022-03-28 |
UNIMPL sceNetAdhocDiscoverInitStart(09594570) at 08bd0588 |
GOD EATER 2 |
v1.11.3 |
2022-01-28 |
80020001=sceKernelCreateMutex(): invalid name |
GOD EATER 2 |
v1.12.3 |
2022-01-23 |
ReadFromHardware: Invalid address 0000000c near PC 088675a4 LR 088816e8 |
GOD EATER 2 |
v1.12.3 |
2022-01-23 |
ReadFromHardware: Invalid address 3ffffff4 near PC 0882f130 LR 0882f11c |
GOD EATER 2 |
v1.12.3 |
2022-01-05 |
UNIMPL sceNetAdhocDiscoverInitStart(095db370) at 08bd0588 |
GOD EATER 2 |
v1.14.4 |
2023-03-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.15.4 |
2023-06-06 |
UNIMPL sceNetAdhocDiscoverInitStart(096d2d70) at 08bd0588 |
GOD EATER 2 |
v1.11-2-gb539ce8c2 |
2021-11-17 |
ReadFromHardware: Invalid address 3f0e479d near PC 3f0e479d LR 3f0e479d |
GOD EATER 2 |
v1.15.3 |
2023-05-23 |
Waiting thread for 12 that was already waiting for 0 |
GOD EATER 2 |
v1.10.3 |
2021-09-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=2, text=2 |
GOD EATER 2 |
v1.10.3 |
2021-09-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=1, text=1 |
GOD EATER 2 |
v1.4-2-g648bc5d |
2021-08-25 |
ReadFromHardware: Invalid address 3f34f9b9 near PC 3f34f9b9 LR 3f34f9b9 |
GOD EATER 2 |
v1.11.3 |
2021-07-16 |
Video out requested, not supported: mode=-559038737 size=-559038737,-559038737 |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
WriteToHardware: Invalid address deadbeef near PC 08839344 LR 08839344 |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
ReadFromHardware: Invalid address 00000000 near PC 08863c34 LR 08863c40 |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
WriteToHardware: Invalid address 00000106 near PC 0882edac LR 0882edbc |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
Unknown GetPointer 00000114 PC 0882ba90 LR 0882ba98 |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
WriteToHardware: Invalid address 00000128 near PC 0883467c LR 08834648 |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
ReadFromHardware: Invalid address 00000008 near PC 08834f84 LR 08834fa4 |
GOD EATER 2 |
v1.11.3 |
2021-07-15 |
ReadFromHardware: Invalid address 014d1e6f near PC 0882e298 LR 0882edac |
GOD EATER 2 |
v1.14.2 |
2023-01-21 |
sceMpegRingbufferPut(): invalid mpeg data |
GOD EATER 2 |
v1.11.3 |
2021-06-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.11.3 |
2022-09-28 |
sceKernelCreateThread(name=sceMemab): unsupported attributes 00001006 |
GOD EATER 2 |
v1.11.3 |
2022-09-28 |
sceKernelCreateThread(name=sceNetIfhandle_Service): unsupported attributes 00001006 |
GOD EATER 2 |
v1.13.1 |
2022-09-09 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
GOD EATER 2 |
v1.11.3 |
2021-04-11 |
Jump to invalid address: 0574d360 |
GOD EATER 2 |
v1.15.4 |
2023-06-04 |
Waiting thread for 20 that was already waiting for 20 |
GOD EATER 2 |
v1.11.2 |
2021-03-22 |
Unexpected mpeg first timestamp: 3000000000 / 206158430208 |
GOD EATER 2 |
v1.11.3 |
2021-03-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=000000d0, pos=0, access=1, data=2, text=2 |
GOD EATER 2 |
v1.11.3 |
2021-03-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=000000d0, pos=0, access=1, data=1, text=1 |
GOD EATER 2 |
v1.13.2 |
2022-11-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |