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 |
2006 FIFA World Cup™ |
v1.17.1 |
2024-07-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.17.1 |
2024-07-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.14.4 |
2024-03-23 |
80000107=sceDisplaySetFrameBuf(04000000, 512, 0, 0): must change latched framebuf first |
2006 FIFA World Cup™ |
v1.17.1 |
2024-02-19 |
Can't draw: No current render step. Step count: 0 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-24 |
UI scissor out of bounds in SavedataScreen: 1799,516-0,92 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-24 |
UI scissor out of bounds in SavedataScreen: 1799,412-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-24 |
UI scissor out of bounds in SavedataScreen: 1799,308-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-24 |
UI scissor out of bounds in SavedataScreen: 1799,204-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-24 |
UI scissor out of bounds in SavedataScreen: 1799,100-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-26 |
UI scissor out of bounds in SavedataScreen: 1800,516-0,92 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-26 |
UI scissor out of bounds in SavedataScreen: 1800,412-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-26 |
UI scissor out of bounds in SavedataScreen: 1800,308-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-26 |
UI scissor out of bounds in SavedataScreen: 1800,204-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.14 |
2024-01-26 |
UI scissor out of bounds in SavedataScreen: 1800,100-0,99 / 1600,720 |
2006 FIFA World Cup™ |
v1.16.6 |
2024-01-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=089d33b8, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.16.6 |
2024-01-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=088eb174, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.16.6 |
2023-12-17 |
Unknown GetPointer 00000010 PC 08b4b89c LR 08b4c240 |
2006 FIFA World Cup™ |
v1.10.2 |
2023-11-05 |
sceKernelLoadModule: unsupported options size=00000014, flags=089fe978, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.10.2 |
2023-11-05 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.16.6 |
2023-10-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=0892b4b0, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.15.4 |
2023-07-28 |
00000400=sceGeEdramSetAddrTranslation(00000400) |
2006 FIFA World Cup™ |
v1.14 |
2023-07-11 |
Error in shader compilation: info: ERROR: 0:40: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:41: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:43: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
001c1a96:0580d022 Tex TexAlpha 2x WriteMask ReplaceBlend_6A:10_B:6_Eq:2 StenToAlpha Sten0 TFuncMod AlphaTest >
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 001c1a96:0580d022 Tex TexAlpha 2x WriteMask ReplaceBlend_6A:10_B:6_Eq:2 StenToAlpha Sten0 TFuncMod AlphaTest >
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform vec3 u_blendFixA;
uniform uint u_alphacolorref;
uniform uint u_alphacolormask;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
int roundAndScaleTo255i(in float x) { return int(floor(x * 255.0 + 0.5)); }
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
v.rgb = clamp(v.rgb * 2.0, 0.0, 1.0);
if ((roundAndScaleTo255i(v.a) & int(u_alphacolormask >> 24)) <= int(u_alphacolorref >> 24)) DISCARD;
v.rgb = destColor.rgb * v.aaa * 2.0 - v.rgb * u_blendFixA;
fragColor0 = vec4(v.rgb, 0.0);
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask);
fragColor0 = unpackUnorm4x8(v32);
}
|
2006 FIFA World Cup™ |
v1.15.4 |
2023-06-26 |
A save request is already running, not starting a new one |
2006 FIFA World Cup™ |
v1.9.0 |
2023-01-26 |
Unknown GetPointer 00000000 PC 08b3c39c LR 08000030 |
2006 FIFA World Cup™ |
v1.10.3 |
2023-01-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145670968 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151001840 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 900 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146383100 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148444536 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=0000a018, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.13.2 |
2022-12-08 |
sceKernelLoadModule: unsupported options size=00000014, flags=08dd5138, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.9.0 |
2022-12-08 |
Unknown GetPointer 00000000 PC 08bfe2b4 LR 08bfe2b4 |
2006 FIFA World Cup™ |
v1.12.3 |
2022-04-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
2006 FIFA World Cup™ |
v1.11.3 |
2022-03-11 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.11.2 |
2022-01-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.11.2 |
2022-01-13 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.10.2 |
2021-11-06 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 149308404 |
2006 FIFA World Cup™ |
v1.12.1 |
2021-10-18 |
80020001=sceKernelCreateSema(): invalid name |
2006 FIFA World Cup™ |
v1.12.1 |
2022-01-13 |
Video out requested, not supported: mode=0 size=0,0 |
2006 FIFA World Cup™ |
v1.12.1 |
2021-10-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-08 |
sceKernelCreateThread(name=sceNetAdhocAuth_Service): unsupported attributes 00001006 |
2006 FIFA World Cup™ |
v1.12.3 |
2022-12-28 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148119992 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143639068 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-08 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143640460 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146538036 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146728056 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146720128 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143598036 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148111360 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167509648 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145463692 |
2006 FIFA World Cup™ |
v1.11.3 |
2023-01-19 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146507860 |
2006 FIFA World Cup™ |
v1.16.5 |
2023-11-07 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.16.5 |
2023-11-07 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=ffffabcd, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-09-17 |
Unknown GetPointer 00000000 PC 08c34dd8 LR 08ac26ac |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 147071048 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146131120 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146122760 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 4259907 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143598472 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167706624 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145512184 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-01 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147039492 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-07-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 148002336 |
2006 FIFA World Cup™ |
v1.15.4 |
2023-06-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=2 |
2006 FIFA World Cup™ |
v1.15.4 |
2023-06-29 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=1 |
2006 FIFA World Cup™ |
v1.12.3 |
2023-11-05 |
Savedata version requested: 3 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-06-20 |
Unknown GetPointer 00000000 PC 08c3f394 LR 08c3f39c |
2006 FIFA World Cup™ |
v1.11.3 |
2021-04-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000021, pos=0, access=-60, data=2, text=2 |
2006 FIFA World Cup™ |
v1.17.4-1 |
2024-09-21 |
Unimplemented HLE function sceNetResolverTerm |
2006 FIFA World Cup™ |
v1.17.4-1 |
2024-09-21 |
Unimplemented HLE function sceNetResolverCreate |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296776 |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/75f03fa2, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/8a9ebdcd, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/3ea82a4b, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/95a84ee5, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/e792cd94, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/3d6d25a9, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/9b71a274, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-07 |
Ignoring func export scePsmfPlayer/235d8787, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.12.3 |
2023-05-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpService': 0xc76f55ed |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpService': 0xa670d3a3 |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpService': 0x5494274b |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpService': 0x4b4e4e71 |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpService': 0x250488f9 |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpAuth': 0xf4531adc |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpAuth': 0xd99455dd |
2006 FIFA World Cup™ |
v1.10.3 |
2021-02-06 |
Unknown syscall in known module 'sceNpAuth': 0xcd86a656 |
2006 FIFA World Cup™ |
v1.10.3 |
2020-08-10 |
UNIMPL sceKernelFindModuleByName(sceModuleManager) |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-08 |
sceKernelCreateThread(name=sceMemab): unsupported attributes 00001006 |
2006 FIFA World Cup™ |
v1.10.3-107-g6e6cac6b9 |
2020-07-20 |
Module linking debug info:
ThreadManForKernel ver=0000, flags=0001, size=5, numVars=0, numFuncs=4, nidData=0822a444, firstSym=0822a2c0, varData=00000000, extra=00000000
sceIdStorage_driver ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=0822a454, firstSym=0822a2e0, varData=00000000, extra=00000000
semaphore ver=0000, flags=0001, size=5, numVars=0, numFuncs=1, nidData=0822a458, firstSym=0822a2e8, varData=00000000, extra=00000000
|
2006 FIFA World Cup™ |
v1.10.3-107-g6e6cac6b9 |
2020-07-20 |
Crazy varData address 01011006, skipping rest of module |
2006 FIFA World Cup™ |
v1.17.1 |
2024-07-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
2006 FIFA World Cup™ |
v1.11.3 |
2021-08-08 |
sceKernelCreateThread(name=sceNetIfhandle_Service): unsupported attributes 00001006 |
2006 FIFA World Cup™ |
v1.10.3-107-g6e6cac6b9 |
2020-07-20 |
Ignoring func export sceNetIfhandle/fd8585e1, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3-107-g6e6cac6b9 |
2020-07-20 |
Ignoring func export sceNetIfhandle/c80181a2, already implemented in HLE. |
2006 FIFA World Cup™ |
v1.10.3-107-g6e6cac6b9 |
2020-07-20 |
Unknown syscall in known module 'ThreadManForKernel': 0x369ed59d |
2006 FIFA World Cup™ |
v1.10.3-107-g6e6cac6b9 |
2020-07-20 |
Unknown syscall in known module 'ThreadManForKernel': 0x39810265 |