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 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-10 |
WriteToHardware: Invalid address 00000024 near PC 08955528 LR 0895836c |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-10 |
WriteToHardware: Invalid address 00000004 near PC 08955508 LR 0895836c |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-10 |
ReadFromHardware: Invalid address 00000004 near PC 089554fc LR 0895836c |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-08 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(UGTO, 3, 2, 09ffd234, 10000000, 0) at 08b8a448 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-05 |
Unknown GetPointer 00000000 PC 08b86954 LR 08b86954 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-01 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (616c7066), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-29 |
WriteToHardware: Invalid address 000002c4 near PC 08b5f708 LR 08b5fc1c |
Star Wars: The Force Unleashed |
v1.10.2 |
2021-03-20 |
sceKernelLoadModule: unsupported options size=00000014, flags=08beaac0, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-18 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (bde07c55), bad data |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-03-16 |
ReadFromHardware: Invalid address aec401e4 near PC aec401e4 LR 08a8b4f0 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaa4, pos=0, access=1, data=1, text=1 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-13 |
Failed decrypting the PRX (ret = -1, size = 3133933, psp_size = 3134272)! |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-12 |
Error in shader program link: info: Error: Uniform u_texelDelta precision mismatch with other stage.
Error: Linking failed.
fs: postshader
#version 320 es
precision mediump float;
precision highp int;
uniform vec2 u_texelDelta;
layout(binding = 0) uniform mediump sampler2D sampler0;
in vec2 v_texcoord0;
in vec2 v_texcoord1;
out vec4 _gl_FragColor;
void main()
{
vec2 texcoordInPixels = ((v_texcoord0 * v_texcoord1) * 272.0) * u_texelDelta.y;
vec2 centerCoord = floor(texcoordInPixels) + vec2(0.5);
vec2 distFromCenter = abs(centerCoord - texcoordInPixels);
float Y = max(distFromCenter.x, distFromCenter.y);
Y *= Y;
float YY = Y * Y;
float YYY = YY * Y;
float LineWeight = YY - (2.7000000476837158203125 * YYY);
LineWeight = 1.0 - (14.0 * LineWeight);
vec3 screen = pow(texture(sampler0, v_texcoord0).xyz, vec3(2.21000003814697265625));
screen = clamp(screen, vec3(0.0), vec3(1.0));
screen = pow(mat3(vec3(0.920000016689300537109375, 0.0350000001490116119384765625, 0.00999999977648258209228515625), vec3(0.23999999463558197021484375, 0.795000016689300537109375, 0.014999999664723873138427734375), vec3(-0.1599999964237213134765625, 0.17000000178813934326171875, 0.97500002384185791015625)) * screen, vec3(0.4545454680919647216796875));
_gl_FragColor = vec4(screen * LineWeight, 1.0);
}
vs: postshader
#version 320 es
uniform vec2 u_texelDelta;
out vec2 v_texcoord0;
in vec2 a_texcoord0;
in vec4 a_position;
out vec2 v_texcoord1;
void main()
{
v_texcoord0 = a_texcoord0;
gl_Position = a_position;
v_texcoord1 = vec2(1.0) / u_texelDelta;
}
|
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-12 |
Error in shader program link: info: Error: Uniform u_texelDelta precision mismatch with other stage.
Error: Linking failed.
fs: postshader
#version 320 es
precision mediump float;
precision highp int;
layout(binding = 0) uniform mediump sampler2D sampler0;
uniform vec2 u_texelDelta;
in vec2 v_texcoord0;
in vec2 v_texcoord1;
out vec4 _gl_FragColor;
void main()
{
vec2 texcoordInPixels = v_texcoord0 * v_texcoord1;
vec2 centerCoord = floor(texcoordInPixels) + vec2(0.5);
vec2 distFromCenter = abs(centerCoord - texcoordInPixels);
float Y = max(distFromCenter.x, distFromCenter.y);
Y *= Y;
float YY = Y * Y;
float YYY = YY * Y;
float LineWeight = YY - (2.7000000476837158203125 * YYY);
LineWeight = 1.0 - (14.0 * LineWeight);
vec3 screen = pow(texture(sampler0, u_texelDelta * centerCoord).xyz, vec3(2.21000003814697265625));
screen = clamp(screen, vec3(0.0), vec3(1.0));
screen = pow(mat3(vec3(0.920000016689300537109375, 0.0350000001490116119384765625, 0.00999999977648258209228515625), vec3(0.23999999463558197021484375, 0.795000016689300537109375, 0.014999999664723873138427734375), vec3(-0.1599999964237213134765625, 0.17000000178813934326171875, 0.97500002384185791015625)) * screen, vec3(0.4545454680919647216796875));
_gl_FragColor = vec4(screen * LineWeight, 1.0);
}
vs: postshader
#version 320 es
uniform vec2 u_texelDelta;
out vec2 v_texcoord0;
in vec2 a_texcoord0;
in vec4 a_position;
out vec2 v_texcoord1;
void main()
{
v_texcoord0 = a_texcoord0;
gl_Position = a_position;
v_texcoord1 = vec2(1.0) / u_texelDelta;
}
|
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(JLSEHK, 10:64:90:fb:ad:27, 10000000, 0) at 08b8a478 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(JLSEHK, 3, 2, 09ffd234, 10000000, 0) at 08b8a448 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(MBIH, 10:64:90:fb:ad:27, 10000000, 0) at 08b8a478 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(MBIH, 3, 2, 09ffd234, 10000000, 0) at 08b8a448 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(MECCGOL, 10:64:90:fb:ad:27, 10000000, 0) at 08b8a478 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(MECCGOL, 3, 2, 09ffd234, 10000000, 0) at 08b8a448 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(DNWW, 3, 2, 09ffd234, 10000000, 0) at 08b8a448 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-08 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(DNWW, 10:64:90:fb:ad:27, 10000000, 0) at 08b8a478 |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-07 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (686b37d0), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-07 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (c6fe68f1), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-06 |
800200d2=scePsmfPlayerSetPsmf(08c961c8, disc0:/PSP_GAME/USRDIR/Attract01_60.pmf): too many streams in PSMF video, bogus data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-06 |
800200d2=scePsmfPlayerSetPsmf(08c961c8, disc0:/PSP_GAME/USRDIR/Attract02_60.pmf): too many streams in PSMF video, bogus data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-06 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (5c80d334), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-18 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (dca29ec5), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-06 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (37405af4), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-06 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (773a8bcf), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-06 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (1ced3f45), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-03-05 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (743fc03f), bad data |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-24 |
Video out requested, not supported: mode=0 size=512,272 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-23 |
Unknown syscall in known module 'sceNpAuth': 0x3f1c1f70 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-23 |
Unknown syscall in known module 'sceNp': 0xbb069a87 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-23 |
Unknown syscall in known module 'sceNp': 0x4b5c71c8 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=2 |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-02-21 |
WriteToHardware: Invalid address 000020ec near PC 08bf8dc8 LR 08bd7424 |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-02-21 |
MIPSCompileOp: Invalid instruction 0095e0ff |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-02-21 |
MIPSCompileOp: Invalid instruction 0035363d |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-15 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (00000000), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-01 |
800200d2=scePsmfPlayerSetPsmf(08c961c8, disc0:/PSP_GAME/USRDIR/KromeLogo_60.pmf): too many streams in PSMF video, bogus data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-01 |
800200d2=scePsmfPlayerSetPsmf(08c961c8, disc0:/PSP_GAME/USRDIR/LucasLogo_60.pmf): too many streams in PSMF video, bogus data |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-02-15 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (e7e09440), bad data |
Star Wars: The Force Unleashed |
v1.11.3 |
2021-04-14 |
Ignoring possible texturing from framebuffer at 04154000 +128x224 / 256x272 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/e46eb986, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/b767f9a0, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/afe01fd3, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/a9e4fb28, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/8aa82c92, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/6dbcf897, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/6a548477, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/44054e03, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/2ee39a64, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/1b5b82bc, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/106a3552, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
Ignoring func export sceDeflt/0ba3b9cc, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=08b10000, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-01 |
80630006=sceAtracSetHalfwayBufferAndGetID(08dda340, 00000800, 00040000): invalid RIFF header |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-28 |
BlockTransfer: Bad source transfer address ebeb7b60! |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-14 |
80020001=sceKernelCreateSema(): invalid name |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-03-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-03-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-03-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.11.2 |
2021-03-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=1, text=1 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145269936 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145257684 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1082130432 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 13070 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142623468 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145106660 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-02 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-12-25 |
80630011=sceAtracSetDataAndGetID(00000000, 00000000): buffer too small |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-24 |
Unknown syscall in known module 'sceNpService': 0x78802d5f |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-24 |
Unknown syscall in known module 'sceNpService': 0x268c009d |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-24 |
Unknown syscall in known module 'sceNpService': 0x1da3e950 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-24 |
Unknown syscall in known module 'sceNpService': 0x168b8de5 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-23 |
Unknown syscall in known module 'sceNpAuth': 0xd99455dd |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-23 |
Unknown syscall in known module 'sceNpAuth': 0xcd86a656 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-02-23 |
Unknown syscall in known module 'sceNpAuth': 0x72bb0467 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-28 |
Bad bounding box data: 090000 |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-22 |
BlockTransfer: Bad source transfer address dbdb7b60! |
Star Wars: The Force Unleashed |
v1.10.3 |
2021-01-28 |
Unknown GE command : b6090000 |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Unknown GE command : 11ffffff |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Render to texture with incompatible formats 0 != 3 at 0414c000 |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=08ad0000, pos=0, access=1, data=2, text=2 |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/fb7846e2, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/f1b73d12, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/e0cf8091, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/d9392ccb, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/d2b18485, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/cc0a8bda, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-11-28 |
Ignoring func export sceCcc/c6a8bee2, already implemented in HLE. |
Star Wars: The Force Unleashed |
v1.10.3 |
2020-10-30 |
Vertices without position found: (00800002) P: s8 T: u16 (through) (size: 8) |
Star Wars: The Force Unleashed |
v1.10.3-1021-ga65a3e92c |
2020-10-28 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(UGYTCV, 3, 4, 09ffd234, 10000000, 0) at 08b8a448 |
Star Wars: The Force Unleashed |
v1.10.3-1021-ga65a3e92c |
2020-10-28 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(UGYTCV, 28:b5:ff:ca:1f:ef, 10000000, 0) at 08b8a478 |
Star Wars: The Force Unleashed |
v1.10.3-1021-ga65a3e92c |
2020-10-28 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(VNREUF, 3, 4, 09ffd234, 10000000, 0) at 08b8a448 |