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 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-23 |
MIPSCompileOp: Invalid instruction 40e00000 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-23 |
MIPSCompileOp: Invalid instruction 00001105 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-23 |
MIPSCompileOp: Invalid instruction 00001005 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.9.0 |
2023-03-16 |
Render to texture with different strides 512 != 64 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-12 |
Unknown GetPointer 0d23137a PC 088b9890 LR 088b9824 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-12 |
Unknown GetPointerWrite 00000000 PC 088b9858 LR 088b986c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-12 |
Unknown GetPointerWrite 00000040 PC 0896ce38 LR 0896ce60 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-12 |
Unknown GetPointerWrite 00000230 PC 0896ce38 LR 0896ce60 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-03-11 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (6769442d), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-09 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (00c4e3c1), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-06 |
Error in shader compilation: info: Vertex shader compilation failed.
ERROR: 0:124: 'comp' : redefinition
ERROR: 0:125: 'type' : redefinition
ERROR: 0:173: 'comp' : redefinition
ERROR: 0:174: 'type' : redefinition
ERROR: 0:222: 'comp' : redefinition
ERROR: 0:223: 'type' : redefinition
ERROR: 6 compilation errors. No code generated.
01000000:80000930 HWX T Tex Light: LightUberShader Cull
#version 300 es
// Driver: Adreno (TM) 320 - GLSL 300
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01000000:80000930 HWX T Tex 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;
if ((u_lightControl & 1u) != 0x0u) {
uint comp = (u_lightControl >> 0x04u) & 0x3u;
uint type = (u_lightControl >> 0x06u) & 0x3u;
if (type == 0x0u) {
toLight = u_lightpos0;
} else {
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
}
ldot = dot(toLight, worldnormal);
if (comp == 0x2u) {
if (u_matspecular.a <= 0.0) {
ldot = 1.0;
} else {
ldot = pow(max(ldot, 0.0), u_matspecular.a);
}
}
switch (int(type)) {
case 1:
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
break;
case 2:
angle = length(u_lightdir0) == 0.0 ? 0.0 : dot(normalize(u_lightdir0), toLight);
if (angle >= u_lightangle_spotCoef0.x) {
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y));
} else {
lightScale = 0.0;
}
break;
default:
lightScale = 1.0;
break;
}
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
if (comp == 0x1u) {
if (ldot >= 0.0) {
|
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3 |
2023-02-27 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (c109ecc8), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-02-26 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (aa11a5ed), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-24 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (13651e8a), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-22 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (96e64842), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-20 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (00000e70), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2023-02-19 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (e24eba70), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-02-17 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (ff5d5445), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14 |
2023-02-15 |
UI scissor out of bounds in MainScreen: 0,0-1221,817 / 1632,816 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-15 |
ReadFromHardware: Invalid address deae1f07 near PC 08000008 LR 08000000 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (b295c254), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (011001e0), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
MIPSCompileOp: Invalid instruction 050f6867 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
MIPSCompileOp: Invalid instruction 4d4c364b |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003748 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003744 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Jump to invalid address: 0cd88080 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003738 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003734 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Jump to invalid address: 0c989494 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003728 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003724 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003720 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 0800371c in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003718 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003714 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 08003710 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
Branch in Jump delay slot at 0800370c in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-15 |
Branch in Jump delay slot at 08003708 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-15 |
Branch in Jump delay slot at 08003704 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-15 |
Jump to invalid address: 0c3c3c3c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-15 |
Branch in Jump delay slot at 08003700 in block starting at 0800319c |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-15 |
Jump to invalid address: 0c3c3c00 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-14 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (d87d8066), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-02-11 |
UI scissor out of bounds in ReportScreen: 300,26-400,1254 / 1280,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-02-11 |
UI scissor out of bounds in ReportScreen: 0,26-280,1247 / 1280,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-02-11 |
UI scissor out of bounds in ReportScreen: 1528,15-712,390 / 1280,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-02-11 |
UI scissor out of bounds in ReportScreen: 0,15-1494,387 / 1280,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-02-07 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (03e28496), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-02-07 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (6570bd16), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-02-07 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (442c06dd), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-02-05 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (4bad1f72), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-05 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (45160000), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14 |
2023-02-05 |
UI scissor out of bounds in GameSettingsScreen: 114,0-403,272 / 483,272 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-02-01 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (3e9be6e2), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-01-31 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (007000fc), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-01-31 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (3eec80c3), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-01-31 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (c08c2842), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.3 |
2023-01-24 |
UI scissor out of bounds in GameSettingsScreen: 356,0-1191,720 / 1464,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-21 |
UI scissor out of bounds in GameSettingsScreen: 240,0-929,565 / 1178,544 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-01-19 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (9c5b8492), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-01-18 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (3f6b4c01), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-01-17 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (40090300), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.12.3 |
2023-01-16 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (5be1631f), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2023-01-16 |
UI scissor out of bounds in GamePauseScreen: 433,26-267,1494 / 1520,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2023-01-16 |
UI scissor out of bounds in GamePauseScreen: 56,26-364,1494 / 1520,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2023-01-16 |
UI scissor out of bounds in GamePauseScreen: 1100,82-400,638 / 720,1520 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2023-01-16 |
UI scissor out of bounds in GamePauseScreen: 0,82-1087,638 / 720,1520 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-18 |
MIPSCompileOp: Invalid instruction 7f71fff8 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-18 |
MIPSCompileOp: Invalid instruction 7fe5dde5 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-18 |
Branch in branch delay slot at 08000020 with different target |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-18 |
MIPSCompileOp: Invalid instruction 7f71198d |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-18 |
MIPSCompileOp: Invalid instruction 7fe52eaa |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.4 |
2023-03-18 |
MIPSCompileOp: Invalid instruction 7fe57f71 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-01-14 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (3f6c5f29), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-01-14 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (10101010), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-09 |
UI scissor out of bounds in GamePauseScreen: 656,13-134,1267 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-09 |
UI scissor out of bounds in GamePauseScreen: 1712,8-321,492 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-09 |
UI scissor out of bounds in GamePauseScreen: 0,8-1702,492 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-07 |
UI scissor out of bounds in GameSettingsScreen: 352,0-1235,720 / 1512,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-07 |
UI scissor out of bounds in GameSettingsScreen: 42,249-474,4308 / 1088,2296 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-07 |
UI scissor out of bounds in GameSettingsScreen: 818,42-3988,474 / 2296,1088 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2023-01-06 |
UI scissor out of bounds in GameSettingsScreen: 280,0-1147,720 / 1344,720 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-01-06 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (402d94af), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-05 |
UI scissor out of bounds in MainScreen: 1717,4-321,496 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-05 |
UI scissor out of bounds in MainScreen: 0,26-1707,474 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-05 |
UI scissor out of bounds in MainScreen: 0,0-1707,500 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.2 |
2023-01-05 |
UI scissor out of bounds in MainScreen: 0,0-1707,27 / 1280,800 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.9.0 |
2023-01-04 |
MIPSCompileOp: Invalid instruction 42911acd |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2023-01-02 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (bf77df0d), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.13.2 |
2022-12-30 |
Unknown GE command : fda55102 |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2022-12-30 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (f96a6c13), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2022-12-29 |
MIPSCompileOp: Invalid instruction 7ed68dbd |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2022-12-29 |
MIPSCompileOp: Invalid instruction 0000003d |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2022-12-27 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (49444920), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14.1 |
2022-12-27 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (c1523f24), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.11.3-834-gbb38cf842 |
2022-12-27 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (ff6a6051), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14 |
2022-12-17 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (5a753d08), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14 |
2022-12-17 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (400b0d7c), bad data |
Ben 10 Ultimate Alien Cosmic Destruction |
v1.14 |
2022-12-16 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (5549edb8), bad data |