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 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-09-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-09-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-09-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.17.4-1 |
2024-08-26 |
Unknown GetPointerWrite 00000000 PC 08bf7d84 LR 08adbf0c |
Marvel™: Ultimate Alliance 2 |
v1.17.3 |
2024-08-04 |
Branch in JumpReg delay slot at 090dbfd0 in block starting at 08dd8198 |
Marvel™: Ultimate Alliance 2 |
v1.17.3 |
2024-07-24 |
Unknown GetPointerWrite 00000015 PC 08bf7d84 LR 08adbf0c |
Marvel™: Ultimate Alliance 2 |
v1.16.6 |
2024-04-09 |
MIPSCompileOp: Invalid instruction 0001ae78 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-04-07 |
80630006=sceAtracSetHalfwayBufferAndGetID(08bfec80, 00001000, 00040000): invalid RIFF header |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-02-20 |
An uneaten prefix at end of block: 08bbc6b8 |
Marvel™: Ultimate Alliance 2 |
v1.13.1 |
2024-01-18 |
Failed to read valid video stream data from header |
Marvel™: Ultimate Alliance 2 |
v1.16.6 |
2024-01-01 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r10p0-00dev0 [Revision 96995].
01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying 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(normal, 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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
f |
Marvel™: Ultimate Alliance 2 |
v1.16.6 |
2023-12-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.16.6 |
2023-12-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.16.6 |
2023-11-11 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r4p0-00rel0 [Revision 96995].
01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying 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(normal, 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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
float |
Marvel™: Ultimate Alliance 2 |
v1.17.1-669-gd298c6f6f5 |
2024-09-04 |
Can't draw: No current render step. Step count: 0 |
Marvel™: Ultimate Alliance 2 |
v1.15.4 |
2023-09-21 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r9p0-01rel0 [Revision 96995].
01f04444:00000b29 HWX C T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01f04444:00000b29 HWX C T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
attribute lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying 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(normal, 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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projP |
Marvel™: Ultimate Alliance 2 |
v1.15.4 |
2023-09-21 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r9p0-01rel0 [Revision 96995].
01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying 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(normal, 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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
fl |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-09-06 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r8p0-00dev0 [Revision 96995].
01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01f04444:00000b21 HWX T N LM Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying 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(normal, 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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
flo |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-07-10 |
Unimplemented HLE function sceUtilityPsnGetStatus |
Marvel™: Ultimate Alliance 2 |
v1.15.4 |
2023-08-05 |
ReadFromHardware: Invalid address deadbeef near PC deadbeef LR deadbeef |
Marvel™: Ultimate Alliance 2 |
v1.15.4-571-g16ee5a50c |
2023-07-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.15.4-571-g16ee5a50c |
2023-07-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.15.4 |
2023-06-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b680, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.14 |
2023-04-27 |
UI scissor out of bounds in GameSettingsScreen: 302,0-1287,721 / 1600,720 |
Marvel™: Ultimate Alliance 2 |
v1.12.3-1307-g8ae673572 |
2023-04-03 |
Rendering to framebuffer offset: 04162000 +256x0 |
Marvel™: Ultimate Alliance 2 |
v1.14 |
2023-03-30 |
UI scissor out of bounds in MainScreen: 0,0-918,721 / 1280,720 |
Marvel™: Ultimate Alliance 2 |
v1.9.0 |
2023-03-22 |
FBO using existing buffer as depthbuffer, 04154000/04110000 and 04110000/04110000 |
Marvel™: Ultimate Alliance 2 |
v1.9.0 |
2023-03-22 |
Render to texture with different strides 512 != 256 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-03-01 |
80630006=sceAtracSetData(2, 08d13140, 00038000): invalid RIFF header |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-02-17 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-01-23 |
Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader.
Please contact [email protected] with the shader causing
the problem, along with this error message.
Mali online shader compiler r8p0-00dev0 [Revision 96995].
01f04444:00000b31 HWX T N LM Tex Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
#version 100
// Driver: Mali-400 MP - GLSL 100
precision highp float;
#define gl_VertexIndex gl_VertexID
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 01f04444:00000b31 HWX T N LM Tex Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform vec3 u_lightpos0;
uniform mediump vec3 u_lightatt0;
uniform lowp vec3 u_lightambient0;
uniform lowp vec3 u_lightdiffuse0;
uniform vec3 u_lightpos1;
uniform mediump vec3 u_lightatt1;
uniform lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform mediump vec3 u_lightatt2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
uniform mediump vec3 u_lightatt3;
uniform lowp vec3 u_lightambient3;
uniform lowp vec3 u_lightdiffuse3;
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;
varying lowp vec4 v_color0;
varying lowp vec3 v_color1;
varying mediump vec3 v_texcoord;
varying 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(normal, 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);
vec3 toLight;
lowp vec3 diffuse;
float distance;
lowp float lightScale;
mediump float ldot;
toLight = u_lightpos0 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos1 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos3 - worldpos;
distance = length(toLight);
toLight /= distance;
ldot = dot(toLight, worldnormal);
lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse) * lightScale;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos. |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-01-18 |
MIPSCompileOp: Invalid instruction 0001d93c |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-05-01 |
MIPSCompileOp: Invalid instruction 00011494 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-01-18 |
MIPSCompileOp: Invalid instruction 00011814 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-05-20 |
Unknown GetPointerWrite 00000000 PC 08adbefc LR 08adbf0c |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2022-11-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=08beaac0, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2022-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2022-10-13 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2022-10-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-09-27 |
sceMpegRingbufferPut(): invalid mpeg data |
Marvel™: Ultimate Alliance 2 |
v1.13.1 |
2022-09-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2022-11-05 |
Unknown GetPointerWrite 00000000 PC 08adbf04 LR 08adbf0c |
Marvel™: Ultimate Alliance 2 |
v1.17.1-334-g1786a4ddb |
2024-08-23 |
Unknown GetPointerWrite 00000000 PC 08adcba0 LR 08adbf0c |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-04-02 |
Branch in Jump delay slot at 090154a0 in block starting at 09015480 |
Marvel™: Ultimate Alliance 2 |
v1.10-6-g8ac4efd3c |
2022-06-13 |
Unknown GetPointer 00000000 PC 08ad8b60 LR 08ad8b60 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-05-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=08cacbd0, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-05-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-05-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 1431655765 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-05-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147649040 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-05-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 464 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 3 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 1 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 0 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 7 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 6 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 5 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2023-04-01 |
GE Interrupt: newState might be 4 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-04-02 |
Jump to invalid address: 0393ee90 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-04-02 |
MIPSCompileOp: Invalid instruction 00000fff |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-04-02 |
Jump to invalid address: 0393f010 |
Marvel™: Ultimate Alliance 2 |
v1.12.3 |
2022-02-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=08b50000, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.12.2 |
2021-12-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144940664 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-04-25 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-10-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-06-25 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.15.4 |
2023-05-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000137, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-09-25 |
80630006=sceAtracSetDataAndGetID(0941de00, 00032874): invalid RIFF header |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-09-25 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-09-25 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=08227a44, firstSym=082278c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08227a54, firstSym=082278e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=08227a58, firstSym=082278e8, varData=00000000, extra=00000000
|
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-09-25 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144918352 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144907468 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 153291632 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144316544 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771664 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142702700 |
Marvel™: Ultimate Alliance 2 |
v1.15.4 |
2023-06-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
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
|
Marvel™: Ultimate Alliance 2 |
v1.10.3 |
2021-09-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.16.6-330-g74a13b0ca |
2024-03-10 |
sceKernelCreateSema(KSAP_ThLockSema) unsupported attr parameter: 00000011 |
Marvel™: Ultimate Alliance 2 |
v1.14.4 |
2023-08-16 |
sceKernelCreateSema(KSAP_FnLockSema) unsupported attr parameter: 00000011 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-08-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-08-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771616 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-08-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-08-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146370816 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-10-20 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.13.2 |
2022-10-13 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-07-06 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144855016 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-07-06 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146694408 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-07-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145504184 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-07-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145559772 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-07-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145551420 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-07-03 |
Unknown GetPointer 00000000 PC 00000000 LR 00000000 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-06-30 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145502672 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-06-30 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145558236 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-06-09 |
Unknown GetPointer 00000000 PC 0895926c LR 08cc9d78 |
Marvel™: Ultimate Alliance 2 |
v1.17.1 |
2024-09-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2021-10-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2023-05-07 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145269936 |
Marvel™: Ultimate Alliance 2 |
v1.11.3 |
2023-05-07 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145257684 |