Recent logs

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-Sports FC Lop-Play v1.11.3 2026-03-01 807f00fd=sceMp3Init(00000000): invalid bitrate v3 l3 rate 000f
METAL SLUG Anthology v1.19.3 2026-03-01 UNTESTED sceNetAdhocctlJoinEnterGameMode(TRI1323, 98:52:1a:fb:13:23, 20000000, 0) at 088e683c
METAL SLUG Anthology v1.19.3 2026-03-01 UNTESTED sceNetAdhocctlCreateEnterGameMode(TRI1323, 1, 2, 09ffe9d0, 20000000, 0) at 088e66d4
METAL SLUG Anthology v1.19.3 2026-03-01 UNTESTED sceNetAdhocctlJoinEnterGameMode(TRIf70d, 60:f0:c0:1a:f7:0d, 20000000, 0) at 088e683c
METAL SLUG Anthology v1.19.3 2026-03-01 UNTESTED sceNetAdhocctlCreateEnterGameMode(TRIf70d, 1, 2, 09ffe9d0, 20000000, 0) at 088e66d4
EFOOTBALL NEW PATCH SEASON v1.18.1 2026-03-01 Unknown GetPointer 007c0000 PC 0884a918 LR 0884a938
EFOOTBALL NEW PATCH SEASON v1.18.1 2026-03-01 Unknown GetPointer 00760b00 PC 0884a918 LR 0884a938
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 00610079
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 01310079
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 0435041d
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 00730069
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 00e3004e
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 0069004e
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction b4f1bbf8
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 767b672a
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 006e0069
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 006e0055
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 0061007a
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 006c0041
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 006f004e
EA-Sports FC Lop-Play v1.17.1 2026-03-01 MIPSCompileOp: Invalid instruction 0000ff9f
PES eFOOTBALL 2026 JRplay v1.9.4 2026-03-01 sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read
eFootball PC - V. v1.9.4 2026-03-01 ReadFromHardware: Invalid address db307770 near PC db307770 LR 08000018
eFootball Chelito 19 v1.16.6 2026-03-01 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
eFootball Chelito 19 v1.16.6 2026-03-01 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
EFOOTBALL PES FL 2026 v1.19.3 2026-03-01 sceNetAdhocMatchingInit(32768) at 08a71984
PES ASIA (SeziaMod) v1.6.3 2026-03-01 Error in shader program link: info: ERROR: 0:456: 'mix' : no matching overloaded function found ERROR: 0:456: 'assign' : cannot convert from 'const float' to '3-component vector of float' ERROR: 2 compilation errors. No code generated. fs: 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_hig
PES ASIA (SeziaMod) v1.6.3 2026-03-01 Error in shader compilation: info: ERROR: 0:456: 'mix' : no matching overloaded function found ERROR: 0:456: 'assign' : cannot convert from 'const float' to '3-component vector of float' ERROR: 2 compilation errors. No code generated. 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 #de
eFootbal 26 By Padhil Channel v1.19.3 2026-03-01 Savedata version requested: 3
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 00000fb9
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 4f6f8b86
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 7a7f7875
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 75728586
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 7d7d7f86
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 78868686
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 7f868686
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 45685686
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 00000094
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction ec0c0ae5
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 4c373009
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 7886851a
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 7d857878
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 71727a1f
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 Jump to invalid address: 0296b8a4
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 06070502
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction 75dcd81d
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 An uneaten prefix at end of block: 00010024
eFootball Edicion Mundial de Clubes By T. Bendezu v1.9.4 2026-03-01 MIPSCompileOp: Invalid instruction ee0c0eec
DRAGONBALL: EVOLUTION v1.11.3 2026-02-28 Unknown GetPointer 00000000 PC 088287f0 LR 08828800
SBK®09 Superbike World Championship v1.18.1 2026-02-28 sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 09145320): duplicate handler
PES MY 2024 v1.19.3 2026-02-28 __KernelStopThread: thread 433 does not exist (helper deleted)
WWE 2K23 DELUXE EDITION BY LUCKY ULTIMATE v1.17.1 2026-02-28 80630007=sceAtracSetData(2, 08d4b180, 0000d5a8): atracID uses different codec type than data
eFootball Chelito 19 v1.7.1 2026-02-28 80420014=__sceSasCore(08bb3ac0, c4cd2980): invalid address
eFootball Lop - Play v1.14.2 2026-02-28 UI scissor out of bounds in LogConfigScreen: 33,0-981,481 / 1014,480
eFootball Lop - Play v1.14.2 2026-02-28 UI scissor out of bounds in MainScreen: 33,0-755,481 / 1014,480
eFootball Lop - Play v1.10.3 2026-02-28 sceGeBreak(mode=0, unknown=09fff3f0): unknown ptr (valid)
SBK®09 Superbike World Championship v1.18.1 2026-02-28 sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 09299c60): duplicate handler
SBK®09 Superbike World Championship v1.18.1 2026-02-28 sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 091b52e0): duplicate handler
SBK®09 Superbike World Championship v1.18.1 2026-02-28 sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 091416f0): duplicate handler
EA FC 2024 BY SPARTAN JR 11 v1.19.3 2026-02-28 Branch in RSRTComp delay slot at 080d6f10 in block starting at 080d0020
SBK®09 Superbike World Championship v1.18.1 2026-02-28 sceKernelRegisterSubIntrHandler(30, 0, 08a22378, 090716c0): duplicate handler
PES BY VANO_OFFICIAL v1.19.3 2026-02-28 Savedata version requested: 3
eFootball PC - V. v1.17.1 2026-02-28 ReadFromHardware: Invalid address 00000018 near PC 08871374 LR 08871374
eFootball PC - V. v1.17.1 2026-02-28 WriteToHardware: Invalid address 0000003c near PC 08882774 LR 08882774
eFootball PC - V. v1.17.1 2026-02-28 WriteToHardware: Invalid address 0000011e near PC 0887f9cc LR 0887f8f8
eFootball PC - V. v1.17.1 2026-02-28 Unknown GetPointerWrite 00000492 PC 08872c14 LR 08872c1c
eFootball RB - V. v1.18.1 2026-02-28 ReadFromHardware: Invalid address 1397dcd8 near PC 08849a4c LR 08849a58
eFootball Chelito 19 v1.6.3 2026-02-28 Unknown GetPointer 72b44ad8 PC 0884d7b4 LR 0884d7d4
EA-Sports FC PC-V v1.17.1 2026-02-28 ReadFromHardware: Invalid address 1397e418 near PC 08863d90 LR 08849a58
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 0800011c
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000114
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000128
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000154
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 080000fc
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000130
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000144
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000150
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 0800015c
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 0800013c
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000104
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000148
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 0800012c
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000138
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000158
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000124
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000110
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000164
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 0800010c
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000140
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000120
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000134
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 0800014c
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000108
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 080000f0
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000118
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 080000f8
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000100
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000160
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 08000074
eFootball 2024 By RH12 Official v1.19.3 2026-02-28 Unknown instruction 01010101 at 080000c4