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 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-06-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaa4, pos=0, access=1, data=1, text=1 |
FIFA 22 By Tutoriales Bendezu |
v1.18.1 |
2025-06-03 |
MIPSCompileOp: Invalid instruction 001b02fc |
FIFA 22 By Tutoriales Bendezu |
v1.6.3 |
2025-05-30 |
Error in shader program link: info: Link Error: Fragment shader is missing.
fs: 00000000:0001d022 Tex TexAlpha TFuncMod AlphaTest0 >
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
uniform sampler2D testtex;
in vec4 v_color0;
in highp vec3 v_texcoord;
inout vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
if (v.a < 0.002) discard;
fragColor0 = v;
}
vs: 00000000:0000001a THR C Tex
#version 300 es
precision highp float;
in vec4 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj_through;
out lowp vec4 v_color0;
out highp vec3 v_texcoord;
void main() {
v_texcoord = vec3(texcoord, 1.0);
v_color0 = color0;
gl_Position = u_proj_through * vec4(position.xyz, 1.0);
}
|
FIFA 22 By Tutoriales Bendezu |
v1.8.0 |
2025-05-20 |
__KernelStopThread: thread 382 does not exist |
FIFA 22 By Tutoriales Bendezu |
v1.14.1 |
2025-05-17 |
UI scissor out of bounds in SavedataScreen: 1090,75-0,74 / 1003,437 |
FIFA 22 By Tutoriales Bendezu |
v1.14.1 |
2025-05-17 |
UI scissor out of bounds in SavedataScreen: 1153,309-0,44 / 1003,437 |
FIFA 22 By Tutoriales Bendezu |
v1.14.1 |
2025-05-17 |
UI scissor out of bounds in SavedataScreen: 1153,231-0,74 / 1003,437 |
FIFA 22 By Tutoriales Bendezu |
v1.14.1 |
2025-05-17 |
UI scissor out of bounds in SavedataScreen: 1153,75-0,74 / 1003,437 |
FIFA 22 By Tutoriales Bendezu |
v1.6.3 |
2025-05-10 |
Error in shader program link: info: Link failed because of missing vertex shader.
fs: 00004000:00000022 Tex TexAlpha Flat TFuncMod
#version 300 es
#extension GL_EXT_shader_framebuffer_fetch : require
precision lowp float;
uniform sampler2D tex;
flat in vec4 v_color0;
in mediump vec3 v_texcoord;
inout vec4 fragColor0;
void main() {
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
fragColor0 = v;
}
vs: 40000000:00000910 HWX T Tex Flat
#version 300 es
precision highp float;
in vec3 position;
in vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
uniform lowp vec4 u_matambientalpha;
flat out lowp vec4 v_color0;
out mediump vec3 v_texcoord;
void main() {
vec3 worldpos = (u_world * vec4(position.xyz, 1.0)).xyz;
mediump vec3 worldnormal = vec3(0.0, 0.0, 1.0);
vec4 viewPos = u_view * vec4(worldpos, 1.0);
gl_Position = u_proj * viewPos;
v_color0 = u_matambientalpha;
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
}
|
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2025-04-29 |
ReadFromHardware: Invalid address f20b9b04 near PC f20b9b04 LR 08000018 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2025-04-25 |
Unknown GetPointer 00020107 PC 08815fcc LR 08815fd4 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2025-04-25 |
Unknown GetPointerWrite 00000000 PC 088287f8 LR 08828800 |
FIFA 22 By Tutoriales Bendezu |
v1.10.3 |
2025-04-15 |
Savedata version requested: %dSavedata version requested: 3 |
FIFA 22 By Tutoriales Bendezu |
v1.18.1 |
2025-04-13 |
Error in shader compilation: info: 0:5: P0007: Extension directive must occur before any non-preprocessor tokens
0:18: L0002: No matching function for call to 'fwidth'
0:19: L0002: Undeclared variable 'boxSize'
0:20: L0002: Undeclared variable 'boxSize'
0:21: L0002: Undeclared variable 'txOffset'
postshader
#ifdef GL_ES
precision mediump float;
#endif
#ifdef GL_ES
#extension GL_OES_standard_derivatives : enable
precision mediump float;
precision mediump int;
#endif
uniform sampler2D sampler0;
varying vec2 v_position;
uniform vec2 u_texelDelta; // (1.0 / bufferWidth, 1.0 / bufferHeight)
uniform vec2 u_pixelDelta; // (1.0 / targetWidth, 1.0 / targetHeight)
// Returns pixel sharpened to nearest pixel boundary.
vec2 sharpSample(vec4 texSize, vec2 coord) {
vec2 boxSize = clamp(fwidth(coord) * texSize.zw, 1e-5, 1.0);
coord = coord * texSize.zw - 0.5 * boxSize;
vec2 txOffset = smoothstep(vec2(1.0) - boxSize, vec2(1.0), fract(coord));
return (floor(coord) + 0.5 + txOffset) * texSize.xy;
}
void main() {
vec2 sharpPos = sharpSample(vec4(u_texelDelta, 1.0 / u_texelDelta), v_position);
vec4 color = texture2D(sampler0, sharpPos);
gl_FragColor = color;
}
|
FIFA 22 By Tutoriales Bendezu |
v1.17.1-975-g80e581a093 |
2025-04-10 |
MIPSCompileOp: Invalid instruction 463d8d64 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1-975-g80e581a093 |
2025-04-10 |
MIPSCompileOp: Invalid instruction 46246486 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1-975-g80e581a093 |
2025-04-10 |
MIPSCompileOp: Invalid instruction 464df516 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1-975-g80e581a093 |
2025-04-10 |
MIPSCompileOp: Invalid instruction 463304de |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2025-04-07 |
ReadFromHardware: Invalid address eaf39d3d near PC eaf39d3d LR 08815f3c |
FIFA 22 By Tutoriales Bendezu |
v1.7.1 |
2025-03-17 |
Unknown GetPointer 000002d0 PC 08a1b7b0 LR 00000000 |
FIFA 22 By Tutoriales Bendezu |
v1.7.1 |
2025-03-17 |
WriteToHardware: Invalid address 00000000 near PC 08a1b7b0 LR 00000000 |
FIFA 22 By Tutoriales Bendezu |
v1.7.1 |
2025-03-17 |
WriteToHardware: Invalid address 000003c0 near PC 08a1b7b0 LR 00000000 |
FIFA 22 By Tutoriales Bendezu |
v1.7.1 |
2025-03-17 |
Unable to allocate stack for root thread. |
FIFA 22 By Tutoriales Bendezu |
v1.11.2 |
2025-01-27 |
Unknown GetPointer 00000000 PC 08a3f8c4 LR 08a3f8c4 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2025-01-22 |
Unknown GetPointer 6533ffe0 PC 08815fc8 LR 08815fd4 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2025-01-22 |
Unknown GetPointerWrite 42c132c0 PC 08815fc8 LR 08815fd4 |
FIFA 22 By Tutoriales Bendezu |
v1.10.3 |
2025-01-21 |
Unknown GetPointer 00000000 PC 08a02a0c LR 08a1e5b0 |
FIFA 22 By Tutoriales Bendezu |
v1.18.1 |
2025-01-19 |
Unknown GetPointer dd616896 PC 08eff8c0 LR 08eff8d0 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2025-01-08 |
Unknown GetPointer 00000000 PC 09063388 LR 0906339c |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-01-03 |
MIPSCompileOp: Invalid instruction 45a5ecc0 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-01-03 |
MIPSCompileOp: Invalid instruction 45ab1de0 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-01-03 |
MIPSCompileOp: Invalid instruction 438ef200 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-01-03 |
MIPSCompileOp: Invalid instruction 00002df8 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-01-03 |
MIPSCompileOp: Invalid instruction 00003e29 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2025-04-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
FIFA 22 By Tutoriales Bendezu |
v1.12.3 |
2024-11-20 |
MIPSCompileOp: Invalid instruction 000006f8 |
FIFA 22 By Tutoriales Bendezu |
v1.12.3 |
2024-11-20 |
Branch in JumpReg delay slot at 08e82008 in block starting at 08e7f298 |
FIFA 22 By Tutoriales Bendezu |
v1.12.3 |
2024-11-20 |
Jump to invalid address: 03a08000 |
FIFA 22 By Tutoriales Bendezu |
v1.15.4 |
2024-11-02 |
__KernelStopThread: thread 338 does not exist (helper deleted) |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-11-01 |
MIPSCompileOp: Invalid instruction 047899e1 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-11-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-11-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=1, text=1 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-10-06 |
Unknown GetPointer 00000000 PC 0884a900 LR 0884a920 |
FIFA 22 By Tutoriales Bendezu |
v1.7.2 |
2024-10-01 |
Unknown GetPointer 00000060 PC 088e4910 LR 088e4938 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-24 |
MIPSCompileOp: Invalid instruction 0000087e |
FIFA 22 By Tutoriales Bendezu |
v1.16.6 |
2025-01-02 |
Waiting thread for 20 that was already waiting for 20 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-22 |
Rendering to framebuffer offset at 04162000 +256x0 (stride 512) |
FIFA 22 By Tutoriales Bendezu |
v1.15.4 |
2024-09-19 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l0 rate 0004 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-12 |
80630007=sceAtracSetData(2, 08d4b180, 0000d800): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-12 |
80630007=sceAtracSetData(2, 08d4b180, 00005000): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-12 |
80630007=sceAtracSetData(2, 08d4b180, 0000fe00): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-12 |
80630007=sceAtracSetData(2, 08d13140, 00000aec): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-12 |
Unknown GetPointerWrite 00000000 PC 08bf4028 LR 08bf4038 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-12 |
80630007=sceAtracSetData(2, 08d4b180, 00015700): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.10-6-g8ac4efd3c |
2024-09-07 |
Render to texture using CLUT with different strides 800 != 512 |
FIFA 22 By Tutoriales Bendezu |
v1.10.1 |
2024-09-02 |
Render to area containing texture at 040cc000 +0x64 |
FIFA 22 By Tutoriales Bendezu |
v1.10.1 |
2024-09-02 |
Unexpected mpeg first timestamp: d59a080000 / 917412249600 |
FIFA 22 By Tutoriales Bendezu |
v1.6.3-432-gfd6c3145d |
2024-08-20 |
ReadFromHardware: Invalid address e63a0733 near PC e63a0733 LR 08000018 |
FIFA 22 By Tutoriales Bendezu |
v1.10.3 |
2024-08-13 |
Unimplemented HLE function sceNetApctlGetState |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-08-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=2, text=2 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-08-03 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=1, text=1 |
FIFA 22 By Tutoriales Bendezu |
v1.14 |
2024-08-01 |
UI scissor out of bounds in MainScreen: 0,0-1214,721 / 1640,720 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2024-08-01 |
sceGeBreak(mode=0, unknown=08d09918): unknown ptr (valid) |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2024-08-01 |
80630007=sceAtracSetData(2, 08d13180, 00038000): atracID uses different codec type than data |
FIFA 22 By Tutoriales Bendezu |
v1.10.3 |
2024-07-28 |
80020190=sceNetAdhocInit(): out of memory, 00001000 stack requested |
FIFA 22 By Tutoriales Bendezu |
v1.13 |
2024-07-23 |
Unknown GetPointerWrite 00000000 PC 08808458 LR 08808460 |
FIFA 22 By Tutoriales Bendezu |
v1.13 |
2024-07-23 |
Direct3D9: Failed to get the device caps! |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2024-07-22 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 005aefff |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction ed000000 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction efefc000 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 000cdede |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 4fefefeb |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction f300006f |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
WriteToHardware: Invalid address 00003ff4 near PC 080d326c LR 08000020 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
ReadFromHardware: Invalid address deae0eef near PC 080d3258 LR 08000020 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 7b000000 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 06fc4ede |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 000003ff |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction effacf50 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
An uneaten prefix at end of block: 080d3208 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-09-24 |
MIPSCompileOp: Invalid instruction 000000bf |
FIFA 22 By Tutoriales Bendezu |
v1.14 |
2024-07-17 |
UI scissor out of bounds in GameSettingsScreen: 302,0-1327,721 / 1640,720 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
MIPSCompileOp: Invalid instruction 00000afe |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
MIPSCompileOp: Invalid instruction 00000037 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
MIPSCompileOp: Invalid instruction 76777677 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
MIPSCompileOp: Invalid instruction b0000000 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
MIPSCompileOp: Invalid instruction 00345454 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-20 |
MIPSCompileOp: Invalid instruction 0000009f |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
Jump to invalid address: 07fc0000 |
FIFA 22 By Tutoriales Bendezu |
v1.17.1 |
2024-07-14 |
MIPSCompileOp: Invalid instruction 000019df |
FIFA 22 By Tutoriales Bendezu |
v1.10.3 |
2024-07-10 |
ReadFromHardware: Invalid address e5421380 near PC e5421380 LR 08000018 |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2024-07-05 |
Unknown GetPointer 23f7b257 PC 08815fc8 LR 08815fd4 |
FIFA 22 By Tutoriales Bendezu |
v1.15.4 |
2024-06-22 |
ReadFromHardware: Invalid address 0000006c near PC 08220f54 LR 08220f4c |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2025-03-10 |
ReadFromHardware: Invalid address 00000000 near PC 08815f0c LR 08000020 |
FIFA 22 By Tutoriales Bendezu |
v1.11.3 |
2024-05-29 |
Unknown GetPointer 00000000 PC 08a0ff84 LR 08a0ff84 |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2024-05-21 |
MIPSCompileOp: Invalid instruction 4584eefe |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2024-07-14 |
MIPSCompileOp: Invalid instruction 0000008e |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2024-05-21 |
MIPSCompileOp: Invalid instruction 000004d5 |
FIFA 22 By Tutoriales Bendezu |
v1.9.4 |
2024-05-21 |
MIPSCompileOp: Invalid instruction 45e901bb |