Recent logs - Prince of Persia - Revelations

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
Prince of Persia - Revelations v1.18.1 2025-03-18 WriteToHardware: Invalid address 00007364 near PC 08aeb698 LR 08aeb698
Prince of Persia - Revelations v1.18.1 2025-03-18 WriteToHardware: Invalid address 00006ac4 near PC 08aeb698 LR 08aeb698
Prince of Persia - Revelations v1.18.1 2025-03-15 MIPSCompileOp: Invalid instruction 78c7e800
Prince of Persia - Revelations v1.16.6 2025-03-13 Unknown GetPointer 00000011 PC 08b38ce4 LR 08b38d1c
Prince of Persia - Revelations v1.16.6 2025-03-13 Unknown GetPointerWrite 00000000 PC 08b38ce4 LR 08b38d1c
Prince of Persia - Revelations v1.18.1 2025-03-10 80630006=sceAtracSetDataAndGetID(0997f580, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-03-10 80630006=sceAtracSetDataAndGetID(095f8380, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-03-10 80630006=sceAtracSetDataAndGetID(09531880, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Unknown GetPointerWrite 0000043a PC 08c05980 LR 08c05980
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Unknown GetPointer 00000266 PC 08c05980 LR 08c05980
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Unknown GE command : 1133fddb
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Jump to invalid address: 0712e740
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Jump to invalid address: 07458b40
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Drawing region rate add non-zero: 0170, 02a3 of 01df, 010f
Prince of Persia - Revelations v1.17.1-334-g1786a4ddb 2025-02-28 Unknown GE command : 3951b717
Prince of Persia - Revelations v1.18.1 2025-02-27 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-00rel0 [Revision 96995]. 03f74440:41c00b00 HWX T N Bones:8 Light: 0: c:0 t:0 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 MatUp:7 WScale 1 #version 100 // Driver: Mali-470 MP - GLSL 100 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 03f74440:41c00b00 HWX T N Bones:8 Light: 0: c:0 t:0 1: c:0 t:1 2: c:0 t:1 3: c:0 t:1 MatUp:7 WScale 1 attribute mediump vec4 w1, w2; attribute vec3 position; attribute mediump vec3 normal; attribute vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform mat4 u_bone0; uniform mat4 u_bone1; uniform mat4 u_bone2; uniform mat4 u_bone3; uniform mat4 u_bone4; uniform mat4 u_bone5; uniform mat4 u_bone6; uniform mat4 u_bone7; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; 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 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() { mat4 skinMatrix = mul(w1.x, u_bone0) + mul(w1.y, u_bone1) + mul(w1.z, u_bone2) + mul(w1.w, u_bone3) + mul(w2.x, u_bone4) + mul(w2.y, u_bone5) + mul(w2.z, u_bone6) + mul(w2.w, u_bone7); vec3 skinnedpos = mul(vec4(position, 1.0), skinMatrix).xyz * 1.9921875; vec3 worldpos = mul(vec4(skinnedpos, 1.0), u_world).xyz; mediump vec3 skinnednormal = mul(vec4(normal, 0.0), skinMatrix).xyz * 1.9921875; mediump vec3 worldnormal = normalizeOr001(mul(vec4(skinnednormal, 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; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse); 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
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(0987c580, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(094ba600, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(09868f00, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(09a814c0, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(096a6b40, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(0970ed40, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(090ecc00, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(09874880, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(09991800, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(09902fc0, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(0957f7c0, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1 2025-02-22 80630006=sceAtracSetDataAndGetID(098f3900, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-1211-g6770122c5c 2025-03-07 sceKernelCreateThread(name=scePsmf_library): unsupported attributes 00000006, ignoring
Prince of Persia - Revelations v1.16.6 2025-02-15 80630006=sceAtracSetDataAndGetID(097e7500, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.16.6 2025-02-15 80630006=sceAtracSetDataAndGetID(096facc0, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.16.6 2025-02-15 80630006=sceAtracSetDataAndGetID(09848080, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.16.6 2025-02-15 80630006=sceAtracSetDataAndGetID(099eb340, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(0980be40, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(0981ef80, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(0990dc80, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(08fdda00, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(09a82c40, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(0998ca40, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(09677e80, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.18.1-800-gb5c843ff72 2025-02-01 80630006=sceAtracSetDataAndGetID(09942540, 00000800): invalid RIFF header
Prince of Persia - Revelations v1.16.4 2025-02-01 Unusual bezier/spline vtype: 120143a3, morph: 0, bones: 6
Prince of Persia - Revelations v1.18.1 2025-01-25 Jump to invalid address: 05d2a940
Prince of Persia - Revelations v1.18.1 2025-01-25 Jump to invalid address: 065c7300
Prince of Persia - Revelations v1.18.1 2025-01-25 Jump to invalid address: 071c0b40
Prince of Persia - Revelations v1.18.1 2025-01-25 Jump to invalid address: 037a6940
Prince of Persia - Revelations v1.18.1 2025-01-25 Branch in Jump delay slot at 09a9c410 in block starting at 09a9c2f0
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00111e29
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0018283a
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0016293c
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00132438
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0017293c
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0017283d
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0007121e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0016293a
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00182c3f
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2d3e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001c2e3e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00172a3c
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2835
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192b3b
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192938
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2938
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00121f28
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0015283b
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00132235
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2a39
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00040c15
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2b3a
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0008131f
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00050c15
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001f2f3f
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00182a3f
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2939
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192b3d
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00081115
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001b2b3e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001c2c3c
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0019293b
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001b2c3d
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a2b3d
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001c2b3b
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192a39
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001b2b3b
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00172739
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001b2c3f
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0019293a
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192839
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192a3f
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a293b
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001d2d3d
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001a293a
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00030a0e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00182a3e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00050b14
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 001b2b3d
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00192b3e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00050c14
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 0004080e
Prince of Persia - Revelations v1.18.1 2025-01-24 MIPSCompileOp: Invalid instruction 00162839