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 |
eFootball Chelito 19 |
v1.9.4 |
2024-11-15 |
80630006=sceAtracSetDataAndGetID(09a25200, 00002000): invalid RIFF header |
eFootball Chelito 19 |
v1.9.4 |
2024-11-15 |
Game install with no files / data |
eFootball Chelito 19 |
v1.9.4 |
2024-11-15 |
sceDmacMemcpy(dest=040cc000, src=086ce940, size=1251008): overlapping read |
eFootball Chelito 19 |
v1.9.4 |
2024-11-15 |
Savedata version requested on save: 3 |
eFootball Chelito 19 |
v1.9.4 |
2024-11-15 |
Savedata version requested: 3 |
BLEACH~靈魂嘉年華2~ |
v1.11.3-838-gff2a6eeda |
2021-12-07 |
ReadFromHardware: Invalid address ffcfffe0 near PC 08917468 LR 08917468 |
嗶波猴學苑外傳~嗶波猴戰記 |
v1.11.3-838-gff2a6eeda |
2021-12-04 |
Unknown GE command : fee38e00 |
嗶波猴學苑外傳~嗶波猴戰記 |
v1.11.3-838-gff2a6eeda |
2021-12-04 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
嗶波猴學苑外傳~嗶波猴戰記 |
v1.11.3-838-gff2a6eeda |
2021-12-04 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
嗶波猴學苑外傳~嗶波猴戰記 |
v1.11.3-838-gff2a6eeda |
2021-12-04 |
sceMpegRingbufferPut(): invalid mpeg data |
イレギュラーハンターX |
v1.11.3-838-gff2a6eeda |
2021-12-04 |
MPEG user data found |
いくぜっ!源さん ~夕焼け大工物語~ |
v1.9.0 |
2022-12-22 |
WriteToHardware: Invalid address 00000014 near PC 08000000 LR 08000000 |
FINAL FANTASY 零式 ディスク1 |
v1.11.3-838-gff2a6eeda |
2021-10-15 |
sceDmacMemcpy(dest=085f4000, src=09341cc0, size=265248): overlapping read |
FRONTIER GATE Boost+ |
v1.14.4 |
2024-10-20 |
Jump to invalid address: 0614afc0 |
FRONTIER GATE Boost+ |
v1.11.3-838-gff2a6eeda |
2021-08-24 |
Jump to invalid address: 06196a00 |
FRONTIER GATE Boost+ |
v1.11.3-838-gff2a6eeda |
2021-08-24 |
Jump to invalid address: 0614b080 |
FRONTIER GATE Boost+ |
v1.11.3-838-gff2a6eeda |
2021-07-24 |
Jump to invalid address: 060cb040 |
FRONTIER GATE Boost+ |
v1.14.4 |
2023-03-03 |
Jump to invalid address: 060cafc0 |
FRONTIER GATE Boost+ |
v1.18.1 |
2024-11-10 |
Jump to invalid address: 0608b040 |
FRONTIER GATE Boost+ |
v1.18.1 |
2024-11-10 |
Jump to invalid address: 0608afc0 |
RIDGE RACER 2 |
v1.11.3-838-gff2a6eeda |
2021-06-30 |
Error in shader program link: info: Compile failed.
ERROR: 0:39: ';' : syntax error;
ERROR: 1 compilation errors. No code generated.
WARNING: 0:32: 'function_call_constructor@vec4_vec4@12' : used without being initialised
WARNING: 1 compilation warnings.
Success.
WARNING: 0:18: 'function_call_constructor@vec4_vec4@0' : used without being initialised
WARNING: 1 compilation warnings.
fs: 00000000:00a1d822 Tex TexAlpha LM Fog 2x TFuncMod AlphaTest0 >
#version 130
// Intel(R) Graphics Media Accelerator 3600 Series - GLSL 130
#define DISCARD discard
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
uniform sampler2D tex;
uniform sampler2D testtex;
in lowp vec4 v_color0;
in lowp vec3 v_color1;
uniform vec3 u_fogcolor;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
void main() {
vec4 s = vec4(v_color1, 0.0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = p * t + s;
v.rgb = clamp(v.rgb * 2.0, 0.0, 1.0);
float fogCoef = clamp(v_fogdepth, 0.0, 1.0);
v = mix(vec4(u_fogcolor, v.a), v, fogCoef);
if (v.a < 0.002) DISCARD;
fragColor0 = v;
}
vs: 01010000:0000093d HWX C T LM Fog Tex Light: MatUp:1 Cull
#version 130
// Intel(R) Graphics Media Accelerator 3600 Series - GLSL 130
#define gl_VertexIndex gl_VertexID
#define lowp
#define mediump
#define highp
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
in vec3 position;
in vec2 texcoord;
in lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform vec4 u_uvscaleoffset;
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_cullRangeMin;
uniform highp vec4 u_cullRangeMax;
out lowp vec4 v_color0;
out lowp vec3 v_color1;
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 = vec3(0.0, 0.0, 1.0);
vec4 viewPos = vec4(mul(vec4(worldpos, 1.0), u_view).xyz, 1.0);
vec4 outPos = mul(u_proj, viewPos);
lowp vec4 lightSum0 = u_ambient * color0 + vec4(u_matemissive, 0.0);
mediump float ldot;
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_color1 = splat3(0.0);
v_texcoord = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
if (u_cullRangeMin.w <= 0.0 || (projPos.z >= u_cullRangeMin.z && projPos.z <= u_cullRangeMax.z)) {
if (projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y || projPos.z < u_cullRangeMin.z || projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y || projPos.z > u_cullRangeMax.z) {
outPos.xyzw = u_cullRangeMax.wwww;
}
}
gl_Position = outPos;
}
|
UO gpSP kai 3.4 test 4 Build 225 |
v1.13.1-130-g714afb46a |
2022-08-23 |
MFIC instruction hit (70020024) at 08a08624 |
The 3rd Birthday® |
v1.18.1 |
2024-11-11 |
sceIoChstat: change attr to 0000 requested |
The 3rd Birthday |
v1.17.4-1 |
2024-10-16 |
sceIoChstat: change attr to 0000 requested |
UO gpSP kai 3.4 test 4 Build 225 |
v1.12.3-1374-ge47fa10f8 |
2022-10-17 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040d2de0 offset: 0 (256x256 stride 240, 5551) |
판타지 골프 팡야 포터블 체험판 |
v1.12.3-473-gc07068f89 |
2022-06-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
판타지 골프 팡야 포터블 체험판 |
v1.12.3-473-gc07068f89 |
2022-06-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=1, text=1 |
판타지 골프 팡야 포터블 체험판 |
v1.12.3-473-gc07068f89 |
2022-06-19 |
80000107=sceDisplaySetFrameBuf(04000000, 512, 3, 0): must change latched framebuf first |
Syphon Filter®: Dark Mirror |
v1.18.1 |
2024-11-14 |
Failed to read valid video stream data from header |
Star Wars : Lethal Alliance |
v1.12.4 |
2024-09-14 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040cc200 offset: 0 (128x128 stride 512, 565) |
アースセイバーPlus 隕石爆破大作戦 |
v1.14.4-322-g428736541 |
2023-02-25 |
Waiting thread for 20 that was already waiting for 20 |
テイルズ オブ ファンタジア なりきりダンジョンX |
v1.12.3-1105-g430b89a7b |
2023-09-14 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 04088000 offset: 0 (512x512 stride 512, 5551) |
SOCOM: U.S. Navy SEALs Fireteam Bravo 3 |
v1.13.2 |
2024-11-02 |
Decoding texture from VRAM mirror at 04244000 swizzle=0 |
Ratchet |
v1.13.2 |
2024-10-27 |
Ignoring possible texturing from framebuffer at 0416c000 +0x64 / 64x272 |
Syphon Filter®: Dark Mirror |
v1.12.3-867-gf58d4dfcf |
2024-11-12 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040dc000 offset: 0 (128x128 stride 128, 5551) |
TALES OF PHANTASIA |
v1.12.3-759-g5a6bf8b43 |
2024-04-02 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 04088000 offset: 0 (512x512 stride 512, 5551) |
FINAL FANTASY 零式 ディスク1 |
v1.12.3-999-g97bc7a1ae |
2024-11-01 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 04180000 offset: 0 (128x128 stride 128, 8888) |
SOCOM: U.S. Navy SEALs Fireteam Bravo 3 |
v1.12.3-896-g0ed8b1e32 |
2024-11-02 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040dc000 offset: 0 (128x128 stride 128, 8888) |
SOCOM: U.S. Navy SEALs Fireteam Bravo 3 |
v1.13.2 |
2024-11-02 |
Decoding texture from VRAM mirror at 04200000 swizzle=0 |
ゴッド・オブ・ウォー 落日の悲愴曲 |
v1.14.4-951-gaa66cc03f |
2024-09-06 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War™: Ghost of Sparta |
v1.12.3-990-gb631ace6d |
2024-11-15 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888) |
God of War®: Ghost of Sparta |
v1.12.3-999-g97bc7a1ae |
2024-11-14 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888) |
BLEACH ~HEAT・THE・SOUL 7~ |
v1.13.2 |
2023-07-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffaf1, pos=0, access=1, data=2, text=2 |
Silent Hill® Origins |
v1.12.3-985-g81fcb3cd0 |
2024-11-14 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 0404c000 offset: 0 (128x128 stride 512, 8888) |
God of War: Chains of Olympus |
v1.14.4-993-gf03dc23df |
2024-11-15 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War: Chains of Olympus |
v1.14.4-98-gb56b28f77 |
2024-11-14 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
FINAL FANTASY 零式 ディスク1 |
v1.14.4-723-gf6573a4d7 |
2024-11-01 |
Ignoring possible texturing from framebuffer at 04156000 +0x128 / 256x272 |
Medal of Honor Heroes™ 2 |
v1.17.1-669-gd298c6f6f5 |
2024-11-13 |
Unimplemented HLE function sceNetResolverCreate |
Midnight Club: L.A. Remix® |
v1.13.2 |
2024-11-13 |
Ignoring possible texturing from framebuffer at 04156000 +0x128 / 128x272 |
God of War™: Ghost of Sparta |
v1.14.4-967-gceaaaaeff |
2024-11-15 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
God of War®: Ghost of Sparta |
v1.14.4-951-gaa66cc03f |
2024-11-14 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
MONSTER HUNTER PORTABLE |
v1.17.1-669-gd298c6f6f5 |
2024-11-03 |
Unimplemented HLE function Kprintf |
MONSTER HUNTER PORTABLE |
v1.17.1-669-gd298c6f6f5 |
2024-11-03 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
The 3rd Birthday |
v1.17 |
2024-05-19 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULJM05798DATA/ICON0.PNG, 08ca18e8, 00000002) |
The 3rd Birthday |
v1.17 |
2024-05-19 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULJM05798DATA/DATA.SYS, 08ca18e8, 00000002) |
The 3rd Birthday |
v1.17 |
2024-05-19 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULJM05798DATA/PARAM.SFO, 08ca18e8, 00000002) |
The 3rd Birthday |
v1.17.1 |
2024-05-19 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULJM05798DATA/3RDINS.BIN, 08ca18e8, 00000002) |
TALES OF PHANTASIA |
v1.18.1 |
2024-11-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fff6b4, pos=0, access=1, data=2, text=2 |
TALES OF PHANTASIA |
v1.9.3-1077-g0b8e34203 |
2024-11-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffb00, pos=0, access=1, data=1, text=1 |
The 3rd Birthday |
v1.9.3-736-gb94260715 |
2024-10-16 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULJM05798DATA/3RDINS.BIN, 09f755b0, 00000002) |
The 3rd Birthday® |
v1.9.3-998-gc739d4e16 |
2024-11-11 |
UNIMPL sceIoChstat(ms0:/PSP/SAVEDATA/ULES01513DATA/3RDINS.BIN, 09f755b0, 00000002) |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-708-g259ae2862 |
2024-11-15 |
Unimplemented HLE function Kprintf |
OUTRUN 2006: COAST 2 COAST |
v1.9.3-708-g259ae2862 |
2024-11-15 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
TEKKEN GLOBAL MOD Season 2 |
v1.9.4 |
2024-11-09 |
80020001=sceKernelCreateMutex(): invalid name |
嗶波猴學苑外傳~嗶波猴戰記 |
v1.9.3 |
2024-08-14 |
sceKernelCreateThread(name=system): unsupported attributes 00000006 |
eFootball PES 2020 "C19" |
v1.9.4 |
2024-11-15 |
Savedata version requested: 3 |
eFootball PES 2020 "C19" |
v1.9.4 |
2024-11-15 |
Savedata version requested on save: 3 |
Crash® of the Titans |
v1.9.4 |
2024-04-07 |
sceDmacMemcpy(dest=04088000, src=086093c0, size=557056): overlapping read |
Star Wars : Lethal Alliance |
v1.9.4 |
2024-09-16 |
Rendering to framebuffer offset: 040cc000 +256x0 |
MotoGP |
v1.6.3 |
2022-11-19 |
80420023=__sceSasRevEVOL(08a80680, 00007fff, 00007fff): invalid volume |
God of War®: Ghost of Sparta |
v1.9.4 |
2024-11-14 |
Rendering to framebuffer offset: 04161800 +64x0 |
Colin McRae Rally 2005 Plus |
v1.9.4 |
2024-11-12 |
Rendering from framebuf with offset 04044000 -> 04000000+0x136 |
Midnight Club 3: Dub Edition |
v1.9.4 |
2024-11-07 |
Savedata version requested on save: 1 |
Pro Evolution Soccer 2012 |
v1.9.4 |
2024-11-13 |
Savedata version requested on save: 3 |
Pro Evolution Soccer 2012 |
v1.9.4 |
2024-11-15 |
Savedata version requested on save: 3 |
Ragnarok Tactics |
v1.9.4 |
2024-11-13 |
An uneaten prefix at end of block: 089c5da4 |
Midnight Club 3: Dub Edition |
v1.9.4 |
2024-11-15 |
Savedata version requested: 1 |
The Sims™ 2 |
v1.9.4 |
2024-11-12 |
An uneaten prefix at end of block for 08a0d75c |
Pro Evolution Soccer 2012 |
v1.9.4 |
2024-11-15 |
Savedata version requested: 3 |
Pro Evolution Soccer 2012 |
v1.9.4 |
2024-11-15 |
Savedata version requested: 3 |
The Fast and the Furious |
v1.9.4 |
2024-08-24 |
sceDmacMemcpy(dest=04142880, src=08b98500, size=32768): overlapping read |
FINAL FANTASY 零式 ディスク1 |
v1.9.4 |
2024-05-31 |
sceDmacMemcpy(dest=04154400, src=09520700, size=557056): overlapping read |
Call of Duty : Roads to Victory™ |
v1.9.4 |
2024-11-14 |
An uneaten prefix at end of block for 08ac3b90 |
Assassin's Creed: Bloodlines™ |
v1.9.4 |
2024-11-15 |
An uneaten prefix at end of block for 08927e54 |
Dante's Inferno™ |
v1.9.4 |
2024-11-14 |
sceDmacMemcpy(dest=086700a0, src=08c012f0, size=65536): overlapping read |
God of War®: Ghost of Sparta |
v1.9.4 |
2024-11-13 |
WriteToHardware: Invalid address 00000029 near PC 08000000 LR 08000000 |
God of War™: Ghost of Sparta |
v1.9.4 |
2024-11-06 |
80631003=sceAtracSetAA3DataAndGetID(08c60dc0, 0001e000, 0022f9d4, 09fbba6c[ffffffff]): invalid ea3 magic bytes |
RIDGE RACER 2 |
v1.9.4 |
2023-09-30 |
Using texture with rendered CLUT: texfmt=4, clutfmt=3 |
FRONTIER GATE Boost+ |
v1.4.2 |
2024-11-10 |
MIPSCompileOp: Invalid instruction 428e0000 |
FRONTIER GATE Boost+ |
v1.4.2 |
2024-11-10 |
MIPSCompileOp: Invalid instruction 42540000 |
FRONTIER GATE Boost+ |
v1.8.0 |
2024-11-10 |
MIPSCompileOp: Invalid instruction 42500000 |
FRONTIER GATE Boost+ |
v1.4.2 |
2024-11-10 |
MIPSCompileOp: Invalid instruction 42900000 |
FRONTIER GATE Boost+ |
v1.8.0 |
2024-11-10 |
MIPSCompileOp: Invalid instruction 421c0000 |
FRONTIER GATE Boost+ |
v1.9.4 |
2024-11-11 |
MIPSCompileOp: Invalid instruction 00010101 |
FRONTIER GATE Boost+ |
v1.9.4 |
2024-11-11 |
MIPSCompileOp: Invalid instruction 02dd0001 |
FRONTIER GATE Boost+ |
v1.9.4 |
2024-11-11 |
MIPSCompileOp: Invalid instruction 00010001 |
FRONTIER GATE Boost+ |
v1.9.4 |
2024-11-11 |
MIPSCompileOp: Invalid instruction 041b0501 |
FRONTIER GATE Boost+ |
v1.9.4 |
2024-11-11 |
MIPSCompileOp: Invalid instruction 01010101 |
ロックマンロックマン |
v1.9.4 |
2024-11-15 |
sceMpegRingbufferPut(): invalid mpeg data |
BURNOUT DOMINATOR |
v1.9.4 |
2024-11-14 |
sceMpegRingbufferPut(): invalid mpeg data |