Recent logs - v1.18.1-162-gfe38e8822c

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
MONSTER HUNTER FREEDOM UNITE™ v1.18.1-162-gfe38e8822c 2025-01-17 __KernelStopThread: thread 701 does not exist (ApctlThread stopped)
eFootball PC - V. v1.18.1-162-gfe38e8822c 2025-01-14 Unknown GetPointerWrite 00000040 PC 08824cf4 LR 088113dc
eFootball PC - V. v1.18.1-162-gfe38e8822c 2025-01-14 Unknown GetPointer 00000038 PC 08824cf4 LR 088113dc
eFootball Euro y Copa America By T. Bendezu v1.18.1-162-gfe38e8822c 2025-01-14 Unknown GetPointer 00003f90 PC 0881c428 LR 0881c438
GTA: Liberty City Stories v1.18.1-162-gfe38e8822c 2025-01-13 Branch in Jump delay slot at 099875a4 in block starting at 099875a0
GTA: Liberty City Stories v1.18.1-162-gfe38e8822c 2025-01-13 MIPSCompileOp: Invalid instruction d1fdfff1
GTA: Liberty City Stories v1.18.1-162-gfe38e8822c 2025-01-13 MIPSCompileOp: Invalid instruction ec4ccb66
GTA: Liberty City Stories v1.18.1-162-gfe38e8822c 2025-01-13 MIPSCompileOp: Invalid instruction 04d9ec10
GTA: Liberty City Stories v1.18.1-162-gfe38e8822c 2025-01-13 MIPSCompileOp: Invalid instruction ec22b6ff
eFootball PC - V. v1.18.1-162-gfe38e8822c 2025-01-10 Unknown GetPointerWrite 0000002d PC 08872bb4 LR 08872c1c
Medal of Honor Heroes™ v1.18.1-162-gfe38e8822c 2025-01-07 __KernelStopThread: thread 511 does not exist (ApctlThread deleted)
Medal of Honor Heroes™ v1.18.1-162-gfe38e8822c 2025-01-07 __KernelStopThread: thread 511 does not exist (ApctlThread stopped)
eFootball PC - V. v1.18.1-162-gfe38e8822c 2025-01-02 Unknown GetPointerWrite 00000489 PC 08872bb4 LR 08872c1c
Silent Hill: Shattered Memories v1.18.1-162-gfe38e8822c 2024-12-17 __KernelStopThread: thread 374 does not exist (helper deleted)
eFootball PES 2025 "Z.D.M v1.18.1-162-gfe38e8822c 2024-12-23 Savedata version requested: 3
トゥームレイダー:レジェンド v1.18.1-162-gfe38e8822c 2024-12-10 Error in shader compilation: info: 0:1: F0002: Mali-400 GP register allocation failed for vertex shader. Please contact [email protected] with the shader causing the problem, along with this error message. Mali online shader compiler r4p0-00rel0 [Revision 96995]. 01f14484:00000b28 HWX C T N Light: 0: c:0 t:1 1: c:0 t:2 2: c:0 t:1 3: c:0 t:1 MatUp:1 Cull #version 100 // Driver: Mali-400 MP - GLSL 100 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) // 01f14484:00000b28 HWX C T N Light: 0: c:0 t:1 1: c:0 t:2 2: c:0 t:1 3: c:0 t:1 MatUp:1 Cull attribute vec3 position; attribute mediump vec3 normal; attribute vec2 texcoord; attribute lowp vec4 color0; uniform mat4 u_proj; uniform mat4 u_world; uniform mat4 u_view; uniform vec4 u_uvscaleoffset; uniform vec3 u_lightpos0; uniform mediump vec3 u_lightatt0; uniform lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; 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 vec3 u_lightpos2; uniform mediump vec3 u_lightatt2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform vec3 u_lightpos3; uniform mediump vec3 u_lightatt3; uniform lowp vec3 u_lightambient3; uniform lowp vec3 u_lightdiffuse3; 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; varying lowp vec4 v_color0; varying mediump vec3 v_texcoord; varying 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 = color0; vec3 diffuseColor = u_matdiffuse.rgb; vec3 specularColor = u_matspecular.rgb; lowp vec4 lightSum0 = u_ambient * ambientColor + vec4(u_matemissive, 0.0); vec3 toLight; lowp vec3 diffuse; float distance; lowp float lightScale; mediump float ldot; lowp float angle; toLight = u_lightpos0 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt0, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse) * lightScale; toLight = u_lightpos1 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); angle = dot(u_lightdir1, toLight); if (angle >= u_lightangle_spotCoef1.x) { lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0) * (u_lightangle_spotCoef1.y <= 0.0 ? 1.0 : pow(max(angle, 0.0), u_lightangle_spotCoef1.y)); } else { lightScale = 0.0; } diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale; toLight = u_lightpos2 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0); lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale; toLight = u_lightpos3 - worldpos; distance = length(toLight); toLight /= distance; ldot = dot(toLight, worldnormal); lightScale = clamp(1.0 / dot(u_lightatt3, vec3(1.0, distance, distance*distance)), 0.0, 1.0); diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0)
Ultimate Ghosts'n Goblins v1.18.1-162-gfe38e8822c 2024-12-09 sceDmacMemcpy(dest=04166000, src=091c11c0, size=4096): overlapping read
はじめの一歩 PORTABLE VICTORIOUS SPIRITS v1.18.1-162-gfe38e8822c 2024-12-09 sceDmacMemcpy(dest=0958b710, src=0956b710, size=131072): overlapping read
Ultimate Ghosts'n Goblins v1.18.1-162-gfe38e8822c 2024-12-09 sceDmacMemcpy(dest=04124800, src=0999a740, size=4096): overlapping read
Ultimate Ghosts'n Goblins v1.18.1-162-gfe38e8822c 2024-12-08 sceDmacMemcpy(dest=04159600, src=0906bf20, size=2048): overlapping read
NARUTO Shippuden: Legends: Akatsuki Rising v1.18.1-162-gfe38e8822c 2024-12-07 sceDmacMemcpy(dest=041e5080, src=092c2090, size=192): overlapping read
Ultimate Ghosts'n Goblins v1.18.1-162-gfe38e8822c 2024-12-07 sceDmacMemcpy(dest=040e6800, src=092010c0, size=2048): overlapping read
BOMBA PATCH FL 2025 v1.18.1-162-gfe38e8822c 2024-12-05 sceDmacMemcpy(dest=086ce940, src=040cc000, size=1251008): overlapping read
Ben 10 Ultimate Alien Cosmic Destruction v1.18.1-162-gfe38e8822c 2024-12-04 ReadFromHardware: Invalid address b3d276a7 near PC b3d276a7 LR 08b4a638
MONSTER HUNTER FREEDOM™ 2 v1.18.1-162-gfe38e8822c 2024-11-27 __KernelStopThread: thread 326 does not exist (ApctlThread stopped)
MONSTER HUNTER FREEDOM™ 2 v1.18.1-162-gfe38e8822c 2024-11-27 __KernelStopThread: thread 326 does not exist (ApctlThread deleted)
BOMBA PATCH FL 2025 v1.18.1-162-gfe38e8822c 2025-01-30 Unknown GetPointer 00000000 PC 0884a908 LR 0884a928
BOMBA PATCH FL 2025 v1.18.1-162-gfe38e8822c 2025-01-30 Unknown GetPointer 00000000 PC 0881c2c0 LR 0881c2d0
BOMBA PATCH FL 2025 v1.18.1-162-gfe38e8822c 2025-02-01 Unknown GetPointerWrite 00000000 PC 08816130 LR 08816144
BOMBA PATCH FL 2025 v1.9.4 2025-02-01 Savedata version requested: 3
PATCH SPARTAN11 v1.9.4 2025-01-08 Game install with no files / data
Dragon Ball Z: Tenkaichi Tag Team v1.18.1-162-gfe38e8822c 2025-01-15 MIPSCompileOp: Invalid instruction 7f00f0fd
eFootball 2025 By Komo Valeri v1.18.1-162-gfe38e8822c 2025-01-21 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
eFootball 2025 By Komo Valeri v1.18.1-162-gfe38e8822c 2025-01-30 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
eFootball 2025 By Komo Valeri v1.18.1-162-gfe38e8822c 2025-01-31 Texture cache ran out of GPU memory; switching to low memory mode
eFootball 2025 By Komo Valeri v1.18.1-162-gfe38e8822c 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball 2025 By Komo Valeri v1.9.4 2025-01-31 Savedata version requested: 3
eFootball Asia 2023 v1.18.1-162-gfe38e8822c 2024-12-11 Unknown GetPointerWrite 00000003 PC 08a02afc LR 089f1774
PATCH SPARTAN11 v1.18.1-162-gfe38e8822c 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
PATCH SPARTAN11 v1.9.4 2025-01-31 Unknown GetPointer 00000000 PC 0881c2d8 LR 0881c2e8
eFootball Libertadores StaR PatcH 2025 By L_S eDits v1.9.4 2025-02-01 Savedata version requested: 3
PATCH SPARTAN11 v1.9.4 2025-02-01 Savedata version requested: 3
PATCH SPARTAN11 v1.18.1-76-gace7cae79a 2025-02-01 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
PATCH SPARTAN11 v1.9.4 2025-02-01 Savedata version requested: 3
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 Branch in RSRTComp delay slot at 08a1b7d8 in block starting at 08a1b7b8
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 Jump to invalid address: 0ca00400
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 MIPSCompileOp: Invalid instruction 00a04adf
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 MIPSCompileOp: Invalid instruction eca2ec3d
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 MIPSCompileOp: Invalid instruction 03db89de
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 MIPSCompileOp: Invalid instruction 76db766f
eFootball 2025 STAR PATCH v1.9.4 2025-02-01 Savedata version requested: 3
eFootball PC - V. v1.18.1-670-g63c7c73fa0 2025-01-31 Unknown GetPointer 00000020 PC 08815fc8 LR 08815fd4
eFootball PC - V. v1.18.1-40-gc9c5435a86 2025-01-31 Unknown GetPointer 00000140 PC 08824a58 LR 088113dc
eFootball PC - V. v1.9.4 2025-01-30 Game install with no files / data
eFootball PC - V. v1.18.1-607-g82fa82be2c 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball PC - V. v1.18.1-607-g82fa82be2c 2025-01-31 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
eFootball PC - V. v1.18.1-670-g63c7c73fa0 2025-01-31 Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800
eFootball PC - V. v1.18.1-40-gc9c5435a86 2025-01-31 Unknown GetPointerWrite 00000000 PC 08808448 LR 08808460
eFootball PC - V. v1.9.4 2025-02-01 Savedata version requested: 3
eFootball Chelito 19 v1.18.1-846-gab47c3cb1f 2025-02-01 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball Chelito 19 v1.9.4 2025-02-01 Savedata version requested: 3
eFootball 2024 v1.18.1-541-g34f3b724cd 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball 2024 v1.9.4 2025-02-01 Savedata version requested: 3
eFootball 2025 MAH v1.9.4 2025-01-31 Savedata version requested: 3
eFootball v1.18.1-162-gfe38e8822c 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball v1.9.4 2025-01-31 Savedata version requested: 3
MYFC 25 MYUNO4U v1.18.1-908-gd7aa236e13 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
MYFC 25 MYUNO4U v1.9.4 2025-01-31 Savedata version requested: 3
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 MIPSCompileOp: Invalid instruction b1df774e
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 MIPSCompileOp: Invalid instruction 4d81ea5f
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 Unknown GetPointer 9ff59f79 PC 00000000 LR 00000000
eFootball PES 2020 C19 & Nibeck Tv v1.18.1-162-gfe38e8822c 2025-01-12 Garbage libstub address 5c80c160 or end d08a12fc
eFootball PES 2024 "SNE" v1.9.4 2025-01-31 Savedata version requested: 3
eFootball Euro y Copa America By T. Bendezu v1.18.1-92-gfe6db07f0d 2025-02-01 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
eFootball Euro y Copa America By T. Bendezu v1.18.1-92-gfe6db07f0d 2025-02-01 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball Euro y Copa America By T. Bendezu v1.9.4 2025-02-01 Savedata version requested: 3
EFOOTBALL NEW PATCH SEASON 2025.... v1.18.1-908-gd7aa236e13 2025-01-31 Unknown GetPointerWrite 00000000 PC 08816130 LR 08816144
EFOOTBALL NEW PATCH SEASON 2025.... v1.9.4 2025-02-01 Savedata version requested: 3
SOULCALIBUR: Broken Destiny v1.18.1-162-gfe38e8822c 2025-01-12 Can't draw: No current render step. Step count: 0
ダンボール戦機W v1.18.1-162-gfe38e8822c 2025-01-30 AT3 header map lacks entry for bpf: 0 channels: 0
Dragon Ball Z: Forever Tenkaichi Tag Team v1.18.1-539-g79940fe58a 2025-01-31 AT3 header map lacks entry for bpf: 0 channels: 0
eFootball PES 2024 "SN3" v1.9.4 2025-01-23 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): fmt definition too small (16)
eFootball PES 2024 "SN3" v1.9.4 2025-02-01 Savedata version requested: 3
ドラゴンボール タッグバーサス v1.18.1-8-g2384c17439 2025-02-01 AT3 header map lacks entry for bpf: 0 channels: 0
EA-Sports FC ATGX v1.9.4 2025-01-31 Savedata version requested: 3
Dragon Ball Z: Tenkaichi Tag Team v1.18.1-945-gb0182ed0e6 2025-02-01 AT3 header map lacks entry for bpf: 0 channels: 0
ワンピース ROMANCE DAWN 冒険の夜明け v1.18.1-600-g3c1693224f 2025-01-31 AT3 header map lacks entry for bpf: 0 channels: 0
ソードアート・オンライン -インフィニティ・モーメント- v1.18.1-635-g41bd984a7e 2025-01-31 AT3 header map lacks entry for bpf: 0 channels: 0
Dragon Ball Z: Tenkaichi Tag Team v1.18.1-945-gb0182ed0e6 2025-02-01 AT3 header map lacks entry for bpf: 0 channels: 0
EA-Sports FC PC-V v1.9.4 2025-01-31 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
EA-Sports FC PC-V v1.9.4 2025-02-01 Savedata version requested: 3
EA-Sports FC PC-V v1.18.1-800-gb5c843ff72 2025-02-01 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
eFootball PC - V. v1.9.4 2025-01-31 80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header
eFootball PC - V. v1.9.4 2025-01-31 Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4
PES FL 2022 v1.9.4 2025-01-31 Savedata version requested: 3
eFootball PC - V. v1.9.4 2025-02-01 Savedata version requested: 3
eFootball PC - V. v1.18.1-670-g63c7c73fa0 2025-02-01 Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c
LEGO® Batman™: The Videogame v1.18.1-162-gfe38e8822c 2025-01-29 Unknown GetPointerWrite 0000c790 PC 08b0e5ec LR 08990a5c
Medal of Honor Heroes™ v1.18.1-162-gfe38e8822c 2025-01-07 __KernelStopThread: thread 508 does not exist (ApctlThread deleted)
WWE 2K22-GENESIS PSP MOD BY BORN FOR GAMERS v1.18.1-162-gfe38e8822c 2024-12-07 80630007=sceAtracSetData(2, 08d4b180, 0000e958): atracID uses different codec type than data