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 Battlefront: Elite Squadron |
v1.14.4 |
2023-03-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.14.4 |
2023-03-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.14.2 |
2023-02-23 |
UI scissor out of bounds in GamePauseScreen: 685,36-367,2364 / 2400,1080 |
Star Wars Battlefront: Elite Squadron |
v1.14.2 |
2023-02-23 |
UI scissor out of bounds in GamePauseScreen: 93,36-575,2364 / 2400,1080 |
Star Wars Battlefront: Elite Squadron |
v1.14.2 |
2023-02-23 |
UI scissor out of bounds in GamePauseScreen: 1822,129-551,951 / 1080,2400 |
Star Wars Battlefront: Elite Squadron |
v1.14.2 |
2023-02-23 |
UI scissor out of bounds in GamePauseScreen: 0,129-1805,951 / 1080,2400 |
Star Wars Battlefront: Elite Squadron |
v1.13.1-242-g6c46095c3 |
2023-01-16 |
Error in shader compilation: info: ERROR: 0:21: Incompatible types in initialization (and no available implicit conversion)
ERROR: 0:25: Use of undeclared identifier 'tsize'
ERROR: 0:27: Use of undeclared identifier 'tsize'
00000000:000003e2 Tex TexAlpha Depal TClampST TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
// Driver: Apple A11 GPU - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
precision highp int;
uniform sampler2D tex;
uniform vec4 u_texclamp;
uniform sampler2D pal;
uniform uint u_depal_mask_shift_off_fmt;
in lowp vec4 v_color0;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec2 fixedcoord = vec2(clamp(v_texcoord.x, u_texclamp.z, u_texclamp.x - u_texclamp.z), clamp(v_texcoord.y, u_texclamp.w, u_texclamp.y - u_texclamp.w));
vec2 uv = fixedcoord.xy;
vec2 uv_round;
vec2 tsize = textureSize(tex, 0).xy;
vec2 fraction;
bool bilinear = (u_depal_mask_shift_off_fmt >> 31) != 0U;
if (bilinear) {
uv_round = uv * tsize - vec2(0.5, 0.5);
fraction = fract(uv_round);
uv_round = (uv_round - fraction + vec2(0.5, 0.5)) / tsize;
} else {
uv_round = uv;
}
highp vec4 t = texture(tex, uv_round);
highp vec4 t1 = textureOffset(tex, uv_round, ivec2(1, 0));
highp vec4 t2 = textureOffset(tex, uv_round, ivec2(0, 1));
highp vec4 t3 = textureOffset(tex, uv_round, ivec2(1, 1));
uint depalMask = (u_depal_mask_shift_off_fmt & 0xFFU);
uint depalShift = (u_depal_mask_shift_off_fmt >> 8) & 0xFFU;
uint depalOffset = ((u_depal_mask_shift_off_fmt >> 16) & 0xFFU) << 4;
uint depalFmt = (u_depal_mask_shift_off_fmt >> 24) & 0x3U;
uvec4 col; uint index0; uint index1; uint index2; uint index3;
switch (int(depalFmt)) {
case 0:
col = uvec4(t.rgb * vec3(31.99, 63.99, 31.99), 0);
index0 = (col.b << 11) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgb * vec3(31.99, 63.99, 31.99), 0);
index1 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t2.rgb * vec3(31.99, 63.99, 31.99), 0);
index2 = (col.b << 11) | (col.g << 5) | (col.r);
col = uvec4(t3.rgb * vec3(31.99, 63.99, 31.99), 0);
index3 = (col.b << 11) | (col.g << 5) | (col.r);
}
break;
case 1:
col = uvec4(t.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index0 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index1 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t2.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index2 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
col = uvec4(t3.rgba * vec4(31.99, 31.99, 31.99, 1.0));
index3 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r);
}
break;
case 2:
col = uvec4(t.rgba * 15.99);
index0 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 15.99);
index1 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t2.rgba * 15.99);
index2 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
col = uvec4(t3.rgba * 15.99);
index3 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r);
}
break;
case 3:
col = uvec4(t.rgba * 255.99);
index0 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
if (bilinear) {
col = uvec4(t1.rgba * 255.99);
index1 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t2.rgba * 255.99);
index2 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
col = uvec4(t3.rgba * 255.99);
index3 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r);
}
break;
};
index0 = ((index0 >> depalShift) & depalMask) | depalOffset;
t = texelFetch(pal, ivec2(index0, 0), 0);
if (bilinear && !(index0 == index1 && index1 == index2 && index2 == index3)) {
index1 = ((index1 >> depalShift) & depalMask) | depalOffset;
index2 = ((index2 >> depalS |
Star Wars Battlefront: Elite Squadron |
v1.10.2 |
2023-01-13 |
80000107=sceDisplaySetFrameBuf(04044000, 512, 0, 0): must change latched framebuf first |
Star Wars Battlefront: Elite Squadron |
v1.10.2 |
2023-01-13 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
Star Wars Battlefront: Elite Squadron |
v1.10.2 |
2023-01-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144918396 |
Star Wars Battlefront: Elite Squadron |
v1.10.2 |
2023-01-13 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144907512 |
Star Wars Battlefront: Elite Squadron |
v1.14.1 |
2023-03-17 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Star Wars Battlefront: Elite Squadron |
v1.12.3 |
2022-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.12.3 |
2022-01-14 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145634952 |
Star Wars Battlefront: Elite Squadron |
v1.12.3 |
2022-01-14 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145543488 |
Star Wars Battlefront: Elite Squadron |
v1.12.3 |
2022-01-06 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=1 |
Star Wars Battlefront: Elite Squadron |
v1.11.3 |
2022-01-01 |
Savedata version requested: 3 |
Star Wars Battlefront: Elite Squadron |
v1.15.4-435-ge797c06f2 |
2023-09-08 |
Failed to read valid video stream data from header |
Star Wars Battlefront: Elite Squadron |
v1.10.3-1123-g28da9958e |
2020-11-05 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.10.3-1123-g28da9958e |
2020-11-05 |
sceKernelLoadModule: unsupported options size=00000014, flags=00001234, pos=0, access=1, data=1, text=1 |
Star Wars Battlefront: Elite Squadron |
v1.14.4 |
2023-02-24 |
Unimplemented HLE function sceNetInetInetAddr |
Star Wars Battlefront: Elite Squadron |
v1.10.2 |
2020-07-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.10.2 |
2020-07-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
Star Wars Battlefront: Elite Squadron |
v1.11.3 |
2021-07-21 |
Unimplemented HLE function sceNetInetSendto |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2022-03-18 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-01-15 |
Unknown GetPointer 00000000 PC 08936d18 LR 08936d18 |
Star Wars Battlefront: Elite Squadron |
v1.8.0 |
2019-09-26 |
Branch in RSRTComp delay slot at 08acfe38 in block starting at 08acfe34 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2021-02-19 |
Bad video stream 3 |
Star Wars Battlefront: Elite Squadron |
v1.5.4-987-g30c3fd63e |
2018-07-16 |
sceKernelLoadModule: unsupported options size=1091d250, flags=1091d254, pos=0, access=1, data=277992024, text=277992028 |
Star Wars Battlefront: Elite Squadron |
v1.6.3 |
2018-06-12 |
80630006=sceAtracSetDataAndGetID(08f69f80, 00001000): invalid RIFF header |
Star Wars Battlefront: Elite Squadron |
v1.6.3 |
2018-06-12 |
80630006=sceAtracSetDataAndGetID(08f48dd0, 00001000): invalid RIFF header |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2021-01-19 |
Unimplemented HLE function sceNetApctlGetInfo |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=00810000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-05-01 |
Bad video stream 2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-04 |
Bad video stream 4 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-24 |
sceKernelLoadModule: unsupported options size=00000014, flags=0111a000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-07-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=00e0a000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-08 |
Could not setup streams, unexpected stream count: 10 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-23 |
Video out requested, not supported: mode=0 size=0,0 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2022-09-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=00e1b800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2022-12-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=00e12800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-08-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=00492800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-08-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=002e0000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.3 |
2023-08-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=00369000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=00e2d800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2022-12-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=00e3a800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=00d80000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.0.1 |
2017-04-26 |
Unexpected mpeg first timestamp: 0 / 0 |
Star Wars Battlefront: Elite Squadron |
v1.2.1-57-g3924d8b |
2016-03-13 |
80630006=sceAtracSetDataAndGetID(08f43ce0, 00001000): invalid RIFF header |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-07-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=0172d800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=004bc800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-07-02 |
sceKernelLoadModule: unsupported options size=00000014, flags=032b8000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=00396800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-25 |
sceKernelLoadModule: unsupported options size=00000014, flags=00547000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-05-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=003ad000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=0045f000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=004c0000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-07-06 |
sceKernelLoadModule: unsupported options size=00000014, flags=007c8800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-06-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=0034c800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-07-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=0383c800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-07-04 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-08-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=00e00000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=03f2a800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.5.2 |
2023-07-16 |
Loading module scePsmf_library with version 0101, devkit 00000000 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-08-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=0156f800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=0056f800, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.15.4-435-ge797c06f2 |
2023-08-23 |
Unimplemented HLE function sceNetResolverTerm |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=00041000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=000f9000, pos=0, access=1, data=2, text=2 |
Star Wars Battlefront: Elite Squadron |
v1.9.4 |
2023-09-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=00038800, pos=0, access=1, data=2, text=2 |