Recent logs - FIFA 07

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 07 v1.16.6 2024-01-29 MIPSCompileOp: Invalid instruction 00000001
FIFA 07 v1.16.6 2024-01-29 MIPSCompileOp: Invalid instruction 00000005
FIFA 07 v1.15.4 2023-08-09 MIPSCompileOp: Invalid instruction 471c4000
FIFA 07 v1.15.4 2023-08-09 MIPSCompileOp: Invalid instruction 42400000
FIFA 07 v1.15.4 2023-08-09 Jump to invalid address: 06daa240
FIFA 07 v1.14.4 2023-01-07 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:125: 'comp' : redefinition ERROR: 0:126: 'type' : redefinition ERROR: 0:174: 'comp' : redefinition ERROR: 0:175: 'type' : redefinition ERROR: 0:223: 'comp' : redefinition ERROR: 0:224: 'type' : redefinition ERROR: 6 compilation errors. No code generated. 01000000:80120b30 HWX T N Tex UVEnv Light: LightUberShader 0: c:0 t:0 1: c:0 t:0 Cull #version 300 es // Driver: Adreno (TM) 330 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 01000000:80120b30 HWX T N Tex UVEnv Light: LightUberShader 0: c:0 t:0 1: c:0 t:0 Cull in vec3 position; in mediump vec3 normal; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform uint u_lightControl; uniform vec3 u_lightpos0; uniform mediump vec3 u_lightatt0; uniform mediump vec3 u_lightdir0; uniform mediump vec2 u_lightangle_spotCoef0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform lowp vec3 u_lightspecular0; uniform vec3 u_lightpos1; uniform mediump vec3 u_lightatt1; uniform mediump vec3 u_lightdir1; uniform mediump vec2 u_lightangle_spotCoef1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform lowp vec3 u_lightspecular1; uniform vec3 u_lightpos2; uniform mediump vec3 u_lightatt2; uniform mediump vec3 u_lightdir2; uniform mediump vec2 u_lightangle_spotCoef2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec3 u_lightspecular2; uniform vec3 u_lightpos3; uniform mediump vec3 u_lightatt3; uniform mediump vec3 u_lightdir3; uniform mediump vec2 u_lightangle_spotCoef3; uniform lowp vec3 u_lightambient3; uniform lowp vec3 u_lightdiffuse3; uniform lowp vec3 u_lightspecular3; 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; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 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); lowp vec3 lightSum1 = splat3(0.0); vec3 toLight; lowp vec3 diffuse; float distance; lowp float lightScale; mediump float ldot; lowp float angle; if ((u_lightControl & 1u) != 0x0u) { uint comp = (u_lightControl >> 0x04u) & 0x3u; uint type = (u_lightControl >> 0x06u) & 0x3u; if (type == 0x0u) { toLight = u_lightpos0; } else { toLight = u_lightpos0 - worldpos; distance = length(toLight); toLight /= distance; } ldot = dot(toLight, worldnormal); if (comp == 0x2u) { if (u_matspecular.a <= 0.0) { ldot = 1.0; } else { ldot = pow(max(ldot, 0.0), u_matspecular.a); } } switch (int(type)) { case 1: lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0); break; case 2: angle = length(u_lightdir0) == 0.0 ? 0.0 : dot(normalize(u_lightdir0), toLight); if (angle >= u_lightangle_spotCoef0.x) { lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y)); } else { lightScale = 0.0; } break; default: lightScale = 1.0; break; } diffuse = (u_lightdiffuse0 * diffuseCol
FIFA 07 v1.14.4 2023-01-07 Error in shader compilation: info: Vertex shader compilation failed. ERROR: 0:125: 'comp' : redefinition ERROR: 0:126: 'type' : redefinition ERROR: 0:174: 'comp' : redefinition ERROR: 0:175: 'type' : redefinition ERROR: 0:223: 'comp' : redefinition ERROR: 0:224: 'type' : redefinition ERROR: 6 compilation errors. No code generated. 01000000:80000b30 HWX T N Tex Light: LightUberShader Cull #version 300 es // Driver: Adreno (TM) 330 - GLSL 300 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 01000000:80000b30 HWX T N Tex Light: LightUberShader Cull in vec3 position; in mediump vec3 normal; in vec2 texcoord; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform uint u_lightControl; uniform vec3 u_lightpos0; uniform mediump vec3 u_lightatt0; uniform mediump vec3 u_lightdir0; uniform mediump vec2 u_lightangle_spotCoef0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform lowp vec3 u_lightspecular0; uniform vec3 u_lightpos1; uniform mediump vec3 u_lightatt1; uniform mediump vec3 u_lightdir1; uniform mediump vec2 u_lightangle_spotCoef1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform lowp vec3 u_lightspecular1; uniform vec3 u_lightpos2; uniform mediump vec3 u_lightatt2; uniform mediump vec3 u_lightdir2; uniform mediump vec2 u_lightangle_spotCoef2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec3 u_lightspecular2; uniform vec3 u_lightpos3; uniform mediump vec3 u_lightatt3; uniform mediump vec3 u_lightdir3; uniform mediump vec2 u_lightangle_spotCoef3; uniform lowp vec3 u_lightambient3; uniform lowp vec3 u_lightdiffuse3; uniform lowp vec3 u_lightspecular3; 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; out lowp vec4 v_color0; out mediump vec3 v_texcoord; out mediump float v_fogdepth; vec3 normalizeOr001(vec3 v) { return length(v) == 0.0 ? vec3(0.0, 0.0, 1.0) : normalize(v); } void main() { vec3 worldpos = mul(vec4(position, 1.0), u_world).xyz; mediump vec3 worldnormal = normalizeOr001(mul(vec4(normal, 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); lowp vec3 lightSum1 = splat3(0.0); vec3 toLight; lowp vec3 diffuse; float distance; lowp float lightScale; mediump float ldot; lowp float angle; if ((u_lightControl & 1u) != 0x0u) { uint comp = (u_lightControl >> 0x04u) & 0x3u; uint type = (u_lightControl >> 0x06u) & 0x3u; if (type == 0x0u) { toLight = u_lightpos0; } else { toLight = u_lightpos0 - worldpos; distance = length(toLight); toLight /= distance; } ldot = dot(toLight, worldnormal); if (comp == 0x2u) { if (u_matspecular.a <= 0.0) { ldot = 1.0; } else { ldot = pow(max(ldot, 0.0), u_matspecular.a); } } switch (int(type)) { case 1: lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0); break; case 2: angle = length(u_lightdir0) == 0.0 ? 0.0 : dot(normalize(u_lightdir0), toLight); if (angle >= u_lightangle_spotCoef0.x) { lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef0.y <= 0.0 ? 1.0 : pow(angle, u_lightangle_spotCoef0.y)); } else { lightScale = 0.0; } break; default: lightScale = 1.0; break; } diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0); if (comp == 0x1u) { if (
FIFA 07 v1.14.4 2023-01-07 Error in shader compilation: info: Fragment shader compilation failed. Internal compiler error: unexpected operator 001c1a96:05800022 Tex TexAlpha 2x WriteMask ReplaceBlend_6A:10_B:6_Eq:2 StenToAlpha Sten0 TFuncMod #version 300 es // Driver: Adreno (TM) 330 - GLSL 300 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 001c1a96:05800022 Tex TexAlpha 2x WriteMask ReplaceBlend_6A:10_B:6_Eq:2 StenToAlpha Sten0 TFuncMod precision highp int; uniform sampler2D tex; uniform sampler2D fbotex; uniform vec3 u_blendFixA; uniform uint u_colorWriteMask; in lowp vec4 v_color0; in mediump float v_fogdepth; in mediump vec3 v_texcoord; out vec4 fragColor0; uint packUnorm4x8R(vec4 v) { highp vec4 f = clamp(v, 0.0, 1.0); uvec4 u = uvec4(255.0 * f); return u.x | (u.y << 0x8u) | (u.z << 0x10u) | (u.w << 0x18u); } vec4 unpackUnorm4x8R(highp uint x) { highp uvec4 u = uvec4(x & 0xFFu, (x >> 0x8u) & 0xFFu, (x >> 0x10u) & 0xFFu, (x >> 0x18u) & 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); v.rgb = destColor.rgb * v.aaa * 2.0 - v.rgb * u_blendFixA; fragColor0 = vec4(v.rgb, 0.0); highp uint v32 = packUnorm4x8R(fragColor0); highp uint d32 = packUnorm4x8R(destColor); v32 = (v32 & u_colorWriteMask) | (d32 & ~u_colorWriteMask); fragColor0 = unpackUnorm4x8R(v32); }
FIFA 07 v1.9.0 2022-02-19 WriteToHardware: Invalid address 00000000 near PC 08d36a10 LR 08d36a10
FIFA 07 v1.9.0 2021-11-27 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08ca9e50
FIFA 07 v1.9.0 2021-11-24 RET: Stack empty!
FIFA 07 v1.11.3 2021-09-12 Unknown GetPointer 00000000 PC 08cb6800 LR 08cb6800
FIFA 07 v1.9.2 2020-09-22 GL ran out of GPU memory; switching to low memory mode
FIFA 07 v1.9.4 2024-03-31 Render to texture with incompatible formats 3 != 1 at 04000000
FIFA 07 v1.8.0 2020-11-23 Render to texture with different strides 128 != 256
FIFA 07 v1.9.4 2020-05-25 Render to texture with different strides 256 != 128
FIFA 07 v1.9.4 2022-11-15 BREAK instruction hit
FIFA 07 v1.9.4 2022-11-15 UNIMPL sceIoDevctl("usbpspcm:", 03415001, 09ef26d4, 4, 00000000, 0)
FIFA 07 v1.9.4 2024-04-29 UNIMPL sceUtilityLoadUsbModule(1)
FIFA 07 v1.7.5 2020-11-28 Render to texture with incompatible formats 3 != 1 at 00000000