Recent logs - EA FC 2024 BY SPARTAN JR 11

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
EA FC 2024 BY SPARTAN JR 11 v1.19.3 2025-10-01 BREAK instruction hit
EA FC 2024 BY SPARTAN JR 11 v1.14.3 2025-10-02 Replacement rowPitch=512, but w=2000 (level=0)
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-10-01 MIPSCompileOp: Invalid instruction 00000175
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 000006fd
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 ReadFromHardware: Invalid address deae2eeb near PC 0806bbfc LR 00000000
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 Branch in branch delay slot at 0806bc14 with different target
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 0004ffff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 0000003e
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 WriteToHardware: Invalid address deadbeef near PC 0806bba0 LR 08000020
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 74000000
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 0000bff9
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 00000001
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 00051001
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 43000000
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 00008fff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 000cbcbc
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 0000bfff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 00004ffe
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 An uneaten prefix at end of block: 08114f9c
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 00000cfc
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction ec01eb55
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction edc95000
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-30 MIPSCompileOp: Invalid instruction 003fb555
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-02 Error in shader compilation: info: 0:456: S0001: No matching overload for function 'mix' found postshader // PPSSPP: Grabbed from Processing and slightly modified. // FXAA shader, GLSL code adapted from: // http://horde3d.org/wiki/index.php5?title=Shading_Technique_-_FXAA // Whitepaper describing the technique: // http://developer.download.nvidia.com/assets/gamedev/files/sdk/11/FXAA_WhitePaper.pdf //====================================================================================================================================================================== //Extra options: #define FXAA 0 //ON:1/OFF:0 /default FXAA, info above //there's no extra config for fxaa here since from what I checked this simple fxaa version offers only more blur or less aa;c, you can check it yourself below //================ #define GAUSS_SQ 0 //ON:1/OFF:0 /full square gauss filtering, don't use with either FXAA nor sharpen filters #define Gsmoothing 3.5 //Default: 3.5 /increase for smoother(blurry) graphics //================ #define GAUSS_S 0 //ON:1/OFF:0 /simple gauss filtering by Bigpet, slightly different from above /you can find standalone in https://github.com/hrydgard/ppsspp/issues/7242 //================ #define MIKU 0 //Hatsune<3 this is an optional filter for all those pale anime faces which get white with bloom/colored:P tested on Miku in white dress //================ #define BLOOM 0 //ON:1/OFF:0 /bloom implementation from "my heroics" blog http://myheroics.wordpress.com/2008/09/04/glsl-bloom-shader/ #define samples 4 //Default: 4 /higher = more glow, worser performance #define quality 0.25 //Default: 0.25 /lower = smaller glow, better quality #define factor 0.002 //Default: 0.002 /just an extra tweak for the bloom slightly higher values might look better in some cases, but too much can cause artifacts #define Bpower 0.5 //Default: 0.5 /amount of bloom mixed //================ #define COLORED 1 //ON:1/OFF:0 /coloring part of KrossX Overlay Bloom shader from here http://www.mediafire.com/krossx#ste5pa5ijfa0o #define Cpower 0.3 //Default: 0.5 /amount of effect mixed //================ #define SHARPEN 0 //ON:1/OFF:0 /a simple sharpen filter, might be counterproductive to FXAA and BLOOM, hence disabled by default #define value 7.5 //Default: 7.5 /higher = more visible effect //================ #define S_COM_V2 0 //Sharpen Complex v2 from https://github.com/mpc-hc similar to above in effect, maybe more accurate #define S_val0 5.0 //Default: 5.0 /higher ~ increases sharpness /negative ~ can add extra blurr/strange effect //================ #define SHADEBOOST 1 //ON:1/OFF:0 /color correction from GSdx/pcsx2 plugin, initially taken from http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=21057 #define saturation 1.1 //Default: 1.0 //negative will look like inverted colors shader #define brightness 2.5 //Default: 1.0 #define contrast 1.23 //Default: 1.0 //negative will be... well negative;p #define red 0.55 //Default: 1.0 #define green 0.55 //Default: 1.0 #define blue 0.55 //Default: 1.0 //Shadeboost presets: //Shadeboost must be activated, presets override options above int SEPIA = 0; //Moody coolors:) int GRAYSCALE = 0; //Just for lols? int NEGATIVE = 0; //As above int PSPCOLORS = 0; //Makes the colors as on older PSP screens(colder) //All presets are simple switch ON:1/OFF:0, //================ #define GAMMA 1 //simple gamma function after reading http://filmicgames.com/archives/299 #define correction 1.2 //Default: 1.0 //================ #define SCANLINES 0 //Ugly lines which never existed on psp, yet are popular among some people(I had to, sorry:P) #define SLsize 1 //Default: 1 /basically sets how wide each line is, from 1 to looks_weird_when_too_high #define SLcolor 1.8 //Default: 2.8 /brightens screen to compensate for dark lines #define SLpower 0.4 //Default: 0.4 /less/more = darker/b
EA FC 2024 BY SPARTAN JR 11 v1.14.3 2025-09-27 Replacement rowPitch=1024, but w=2000 (level=0)
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-26 avcodec_decode_audio4: Error decoding audio -22 / ffffffea
EA FC 2024 BY SPARTAN JR 11 v1.14.3 2025-09-26 Replacement rowPitch=512, but w=2400 (level=0)
EA FC 2024 BY SPARTAN JR 11 v1.14.3 2025-10-01 Replacement rowPitch=256, but w=512 (level=0)
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-24 Unknown GetPointer 00000008 PC 08a0a208 LR 08a01a10
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 Branch in RSZeroComp delay slot at 00010008 in block starting at 00010000
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 Jump to invalid address: 02129430
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 Branch in Jump delay slot at 00010004 in block starting at 00010000
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 Jump to invalid address: 07505680
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 Branch in Jump delay slot at 00010000 in block starting at 00010000
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 Jump to invalid address: 0749b700
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-21 ReadFromHardware: Invalid address 00000000 near PC 00000000 LR 08a1f464
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 633101d4
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 63310094
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 633100d4
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 63310114
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-26 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction f3168bff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 454fc000
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 Jump to invalid address: 0bdc0000
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction ef30bf50
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 00001fff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 0001df15
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 0000dfff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 MIPSCompileOp: Invalid instruction 0003ffff
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-20 Branch in branch delay slot at 080aa418 with different target
EA FC 2024 BY SPARTAN JR 11 v1.11 2025-09-19 Unknown GetPointer 2985af54 PC 0881c2d8 LR 0881c2e8
EA FC 2024 BY SPARTAN JR 11 v1.17.4-1 2025-09-19 Unknown GetPointer 00000000 PC 08a02a0c LR 0881c2e8
EA FC 2024 BY SPARTAN JR 11 v1.8.0 2025-09-29 sceDmacMemcpy(dest=09054040, src=086ce940, size=1251008): overlapping read
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-11 MIPSCompileOp: Invalid instruction 0000017b
EA FC 2024 BY SPARTAN JR 11 v1.8.0 2025-09-23 Unknown GetPointer 00000000 PC 08815f0c LR 08000020
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-18 Unknown GetPointer 00000000 PC 0884a918 LR 0884a938
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-09-08 MIPSCompileOp: Invalid instruction 01010101
EA FC 2024 BY SPARTAN JR 11 v1.11.2 2025-09-05 Unknown GetPointer 00000000 PC 08a1b7b0 LR 08000030
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-09-21 Unknown GetPointer 00000020 PC 08815f88 LR 08815fd4
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-27 Unimplemented HLE function sceKernelFindModuleByUID
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-27 Unknown syscall in known module 'ThreadManForKernel': 0x809ce29b
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-08-30 Jump to invalid address: 0117ee14
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-08-30 MIPSCompileOp: Invalid instruction 78143e11
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-08-22 Unknown GetPointer 00000000 PC 0882bbf4 LR 0882bc04
EA FC 2024 BY SPARTAN JR 11 v1.16.5 2025-09-17 Unknown GetPointer 00000020 PC 08815fc0 LR 08815fd4
EA FC 2024 BY SPARTAN JR 11 v1.16.5 2025-09-17 Unknown GetPointerWrite 00000000 PC 08815fc0 LR 08815fd4
EA FC 2024 BY SPARTAN JR 11 v1.17.1 2025-09-26 Unknown GetPointer 00000140 PC 08824cf4 LR 088113dc
EA FC 2024 BY SPARTAN JR 11 v1.16.5 2025-09-26 Unknown GetPointerWrite 00000000 PC 08824cf4 LR 088113dc
EA FC 2024 BY SPARTAN JR 11 v1.19.3 2025-09-29 sceNetAdhocMatchingInit(32768) at 08a719b8
EA FC 2024 BY SPARTAN JR 11 v1.19.3 2025-08-20 Branch in branch delay slot at 08073b3c with different target
EA FC 2024 BY SPARTAN JR 11 v1.19.3 2025-08-20 Branch in branch delay slot at 08073b58 with different target
EA FC 2024 BY SPARTAN JR 11 v1.19.3 2025-08-20 Branch in branch delay slot at 08073c8c with different target
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-28 80630006=sceAtracSetDataAndGetID(09a4ec00, 00004000): fmt definition too small (16)
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-23 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0
EA FC 2024 BY SPARTAN JR 11 v1.17.1 2025-08-06 Can't draw: No current render step. Step count: 0
EA FC 2024 BY SPARTAN JR 11 v1.11.3 2025-08-19 Unknown GetPointer 00000000 PC 08824cf4 LR 088113dc
EA FC 2024 BY SPARTAN JR 11 v1.18.1-846-gab47c3cb1f 2025-10-01 Unknown GetPointer 00000140 PC 08824a58 LR 088113dc
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-27 Unimplemented HLE function sceKernelDcacheWritebackAll
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-27 Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-27 Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-11 sceDmacMemcpy(dest=086ce940, src=040cc000, size=1251008): overlapping read
EA FC 2024 BY SPARTAN JR 11 v1.9.3 2025-09-30 MIPSCompileOp: Invalid instruction 46800499
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-03 Unknown GetPointer 00000000 PC 08808448 LR 08808460
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-02 Game install with no files / data
EA FC 2024 BY SPARTAN JR 11 v1.18.1-846-gab47c3cb1f 2025-10-01 Unknown GetPointerWrite 00000000 PC 08808448 LR 08808460
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-07-28 Unknown GetPointerWrite 00000000 PC 08816154 LR 0881615c
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-07-28 Unknown GetPointer 00000000 PC 0881c2e0 LR 0881c2e8
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-09-27 sceDmacMemcpy(dest=040cc000, src=086ce940, size=1251008): overlapping read
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-02 avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-02 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-02 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-03 Unknown GetPointer 00000000 PC 08816148 LR 0881615c
EA FC 2024 BY SPARTAN JR 11 v1.18.1-846-gab47c3cb1f 2025-10-02 Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800
EA FC 2024 BY SPARTAN JR 11 v1.18.1 2025-10-02 Unknown GetPointer 00000020 PC 08815fc8 LR 08815fd4
EA FC 2024 BY SPARTAN JR 11 v1.18.1-846-gab47c3cb1f 2025-10-02 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-03 Savedata version requested on save: 3
EA FC 2024 BY SPARTAN JR 11 v1.9.4 2025-10-03 Savedata version requested: 3