Recent logs - Prince of Persia: The Forgotten Sands™

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: The Forgotten Sands™ v1.17.1 2024-07-24 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09873e84, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-24 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09873e84, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.9.4 2024-07-20 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 094ba90c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.9.4 2024-07-20 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 094ba90c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-24 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 r7p0-00rel1 [Revision 96995]. 03f04004:41c00b20 HWX T N Bones:8 Light: 0: c:0 t:1 1: c:0 t:0 2: c:0 t:0 3: c:0 t:1 WScale 1 Cull #version 100 // Driver: Mali-450 MP - GLSL 100 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 03f04004:41c00b20 HWX T N Bones:8 Light: 0: c:0 t:1 1: c:0 t:0 2: c:0 t:0 3: c:0 t:1 WScale 1 Cull 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 mediump vec3 u_lightatt0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform vec3 u_lightpos2; 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 - 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; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse); toLight = u_lightpos2; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse); 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_texcoord = vec3(texcoord.xy * u_uvsca
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-19 scePsmfPlayerSetPsmf*: incorrect PSMF magic (afc98dc0), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-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 r7p0-00rel1 [Revision 96995]. 03f04440:41c00b20 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 WScale 1 Cull #version 100 // Driver: Mali-450 MP - GLSL 100 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 03f04440:41c00b20 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 WScale 1 Cull 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 = (u_lig
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-16 Unknown GE command : 11111111
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-15 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 094812dc, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-15 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 094812dc, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-13 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0948166c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-07-13 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0948166c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.15 2024-07-08 scePsmfPlayerStart(09455458, 09fff4b0, 0): unable to change video stream to 0
Prince of Persia: The Forgotten Sands™ v1.15 2024-07-08 scePsmfPlayerSetPsmf*: incorrect PSMF magic (7b765ab0), bad data
Prince of Persia: The Forgotten Sands™ v1.15 2024-07-07 scePsmfPlayerSetPsmf*: incorrect PSMF magic (7b7c36c0), bad data
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-07-06 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 094bd5ac, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-07-06 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 094bd5ac, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.6.2 2024-07-05 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09b55594, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-30 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 094838f4, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-30 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 094838f4, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-29 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09d36a04, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-29 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09d36a04, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-28 scePsmfPlayerSetPsmf*: incorrect PSMF magic (656e6966), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-23 scePsmfPlayerSetPsmf*: incorrect PSMF magic (00004040), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-18 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 095af50c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-18 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 095af50c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-13 scePsmfPlayerSetPsmf*: incorrect PSMF magic (ff75ff70), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1-669-gd298c6f6f5 2024-06-13 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 099b0084, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1-669-gd298c6f6f5 2024-06-13 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 099b0084, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-12 scePsmfPlayerSetPsmf*: incorrect PSMF magic (00130080), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-12 800200d2=scePsmfPlayerSetPsmf(0946d620, disc0:/PSP_GAME/USRDIR/video/ubilogo.pmf): too many streams in PSMF video, bogus data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-12 scePsmfPlayerSetPsmf*: incorrect PSMF magic (08000010), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-12 scePsmfPlayerSetPsmf*: incorrect PSMF magic (0008ffa0), bad data
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-06-10 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09476eec, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-06-10 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09476eec, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1-334-g1786a4ddb 2024-06-10 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 094839b4, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-08 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09883674, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-06-08 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09883674, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.9.4 2024-06-04 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0947ff84, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.9.4 2024-06-04 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0947ff84, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1-491-g9cdd97c13b 2024-06-02 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 098b428c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1-491-g9cdd97c13b 2024-06-02 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 098b428c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-20 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0987722c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-20 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0987722c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-20 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 094647cc, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-20 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 094647cc, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-07 sceKernelLoadModule: unsupported options size=00000014, flags=088eb174, pos=0, access=1, data=1, text=1
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-07 scePsmfPlayerSetPsmf*: incorrect PSMF magic (8b724120), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-06 sceIoChstat: change attr to 0000 requested
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-05-06 UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULUS10518DATA/DATA.DNS, 09f919b0, 00000002)
Prince of Persia: The Forgotten Sands™ v1.15.4 2024-05-05 sceDmacMemcpy(dest=04123b00, src=09282de0, size=416): overlapping read
Prince of Persia: The Forgotten Sands™ v1.16.1 2024-04-25 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09475074, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.1 2024-04-25 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09475074, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-04-21 00000400=sceGeEdramSetAddrTranslation(00000800)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-04-06 __KernelStopThread: thread 704 does not exist (ApctlThread deleted)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-04-01 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09481c04, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-04-01 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09481c04, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-19 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0946495c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-19 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0946495c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-17 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09465c1c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-17 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09465c1c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-17 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0947fd44, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-17 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0947fd44, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-03-11 scePsmfPlayerSetPsmf*: incorrect PSMF magic (9d551380), bad data
Prince of Persia: The Forgotten Sands™ v1.6.3 2024-03-10 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09b76814, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.6.3 2024-03-10 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09b76814, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-06 scePsmfPlayerSetPsmf*: incorrect PSMF magic (c337d5a0), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-06 scePsmfPlayerSetPsmf*: incorrect PSMF magic (14800003), bad data
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-04 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09482b1c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-03-04 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09482b1c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17 2024-03-03 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 099c0b84, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17 2024-03-03 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 099c0b84, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-22 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09af7674, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-22 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09af7674, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.15.4 2024-02-20 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09b9564c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.15.4 2024-02-20 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09b9564c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-02-20 Could not setup streams, unexpected stream count: 10
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-02-20 00000800=sceGeEdramSetAddrTranslation(00000800)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-02-18 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09483904, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-02-18 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09483904, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-16 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09a5933c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-16 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09a5933c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-15 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 096656cc, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-15 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 096656cc, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16 2024-02-09 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a51d8, pos=0, access=1, data=2, text=2
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-02-09 scePsmfPlayerSetPsmf*: incorrect PSMF magic (c9461420), bad data
Prince of Persia: The Forgotten Sands™ v1.17 2024-02-07 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09483b8c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17 2024-02-07 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09483b8c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17 2024-02-02 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0947fe3c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.17 2024-02-02 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0947fe3c, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.13.2 2024-01-26 scePsmfPlayerStart(09381210, 09fff4b0, 0): unable to change video stream to 0
Prince of Persia: The Forgotten Sands™ v1.13.2 2024-01-26 scePsmfPlayerSetPsmf*: incorrect PSMF magic (00000400), bad data
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-01-25 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 0986ed24, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-01-25 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 0986ed24, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.6 2024-01-21 Branch in JumpReg delay slot at 09829f00 in block starting at 09829f00
Prince of Persia: The Forgotten Sands™ v1.15.3 2024-01-16 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09d362a4, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.15.3 2024-01-16 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09d362a4, 4, 00000000, 0)
Prince of Persia: The Forgotten Sands™ v1.16.4 2024-01-16 sceKernelLoadModule: unsupported options size=00000014, flags=088c0970, pos=0, access=1, data=2, text=2
Prince of Persia: The Forgotten Sands™ v1.17.1 2024-02-18 800200d2=scePsmfPlayerSetPsmf(09407780, disc0:/PSP_GAME/USRDIR/video/ubilogo.pmf): too many streams in PSMF video, bogus data
Prince of Persia: The Forgotten Sands™ v1.15.4 2024-01-08 UNIMPL sceIoDevctl("usbpspcm:", 03415002, 09481d84, 4, 00000000, 0)