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 |
探偵オペラ ミルキィホームズ 2 |
v1.16.4 |
2024-10-07 |
MIPSCompileOp: Invalid instruction 00000445 |
Grand Theft Auto V YUNIER PB |
v1.16.4 |
2024-09-27 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fffad0, pos=0, access=1, data=1, text=1 |
LEGO® Batman™: The Videogame |
v1.17.1 |
2024-10-07 |
Unaligned icache invalidation of 08607538 (08607538 + 0) at PC=089741fc |
eFootball Chelito 19 |
v1.9.4 |
2024-10-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball Chelito 19 |
v1.17.1-980-gabaea0197b |
2024-10-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
eFootball Chelito 19 |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
WWE 2K22 V2.00 PSP BY KINGROYGAMER. |
v1.16.4 |
2024-09-16 |
80630006=sceAtracSetData(2, 08d4b180, 000032b0): invalid RIFF header |
eFootball Chelito 19 |
v1.16.4 |
2024-09-14 |
Unknown GetPointer 00200100 PC 0884d7b4 LR 0884d7d4 |
eFootball Chelito 19 |
v1.16.4 |
2024-09-07 |
Unknown GetPointer 00501400 PC 0884d7b4 LR 0884d7d4 |
eFootball PES By HAROUN TECH |
v1.16.4 |
2024-08-31 |
sceNetAdhocMatchingInit(32768) at 08a719c8 |
eFootball Play-C |
v1.16.4 |
2024-08-30 |
Unknown GetPointer 29862f46 PC 0881c2d8 LR 0881c2e8 |
eFootball Play-C |
v1.16.4 |
2024-08-30 |
Unknown GetPointer 2985749f PC 0881c2d8 LR 0881c2e8 |
DRAGON BALL Z SHIN BUDOKAI ANOTHER ROAD |
v1.16.4 |
2024-08-28 |
Error in shader program link: info: (unknown reason)
fs: postshader
#ifdef GL_ES
precision mediump float;
#endif
/*
Hyllian's xBR-lv2 Shader Accuracy (tweak by guest.r)
Copyright (C) 2011-2015 Hyllian - [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Incorporates some of the ideas from SABR shader. Thanks to Joshua Street.
*/
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
#define CornerA 0 //ON:1/OFF:0 / A, B, C, D are just different variants of corner rounding
#define CornerB 0 //ON:1/OFF:0 / activate only one
#define CornerD 0 //ON:1/OFF:0
// CornerC //used as default if none of the above is defined
const float XBR_SCALE = 3.0;
const float lv2_cf = 2.0;
const float coef = 2.0;
const vec3 rgbw = vec3(14.352, 28.176, 5.472);
const vec4 eq_threshold = vec4(15.0, 15.0, 15.0, 15.0);
const vec4 Ao = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bo = vec4( 1.0, 1.0, -1.0,-1.0 );
const vec4 Co = vec4( 1.5, 0.5, -0.5, 0.5 );
const vec4 Ax = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 Bx = vec4( 0.5, 2.0, -0.5,-2.0 );
const vec4 Cx = vec4( 1.0, 1.0, -0.5, 0.0 );
const vec4 Ay = vec4( 1.0, -1.0, -1.0, 1.0 );
const vec4 By = vec4( 2.0, 0.5, -2.0,-0.5 );
const vec4 Cy = vec4( 2.0, 0.0, -1.0, 0.5 );
const vec4 Ci = vec4(0.25, 0.25, 0.25, 0.25);
uniform sampler2D sampler0;
uniform vec2 u_texelDelta;
uniform vec2 u_pixelDelta;
varying vec2 v_texcoord0;
// Difference between vector components.
vec4 df(vec4 A, vec4 B) {
return vec4(abs(A-B));
}
// Compare two vectors and return their components are different.
vec4 diff(vec4 A, vec4 B) {
return vec4(notEqual(A, B));
}
// Determine if two vector components are equal based on a threshold.
vec4 eq(vec4 A, vec4 B) {
return (step(df(A, B), eq_threshold));
}
// Determine if two vector components are NOT equal based on a threshold.
vec4 neq(vec4 A, vec4 B) {
return (vec4(1.0, 1.0, 1.0, 1.0) - eq(A, B));
}
float c_df(vec3 c1, vec3 c2) {
vec3 df = abs(c1 - c2);
return df.r + df.g + df.b;
}
void main() {
bool upscale = u_texelDelta.x > (1.6 * u_pixelDelta.x);
vec3 res = texture2D(sampler0, v_texcoord0.xy).xyz;
// Let's skip the whole scaling if output size smaller than 1.6x of input size
if (upscale) {
vec4 edri, edr, edr_l, edr_u, px; // px = pixel, edr = edge detection rule
vec4 irlv0, irlv1, irlv2l, irlv2u;
vec4 fx, fx_l, fx_u; // inequations of straight lines.
vec2 pS = 1.0 / u_texelDelta.xy;
vec2 fp = fract(v_texcoord0.xy*pS.xy);
vec2 TexCoord_0 = v_texcoord0.xy-fp*u_pixelDelta.xy;
vec2 dx = vec2(u_texelDelta.x,0.0);
vec2 dy = vec2(0.0,u_texelDelta.y);
vec2 y2 = dy + dy; vec2 x2 = dx + dx;
vec4 delta = vec4(1.0/XBR_SCALE, 1.0/XBR_SCALE, 1.0/XBR_SCALE, 1.0/XBR_SCALE);
vec4 delta_l = vec4(0.5/XBR_SCALE, 1.0/XBR_SCALE, 0.5/XBR_SCALE, 1.0/XBR_SCALE);
vec4 delta_u = delta_l.yxwz;
vec3 A = texture2D(sampler0, TexCoord_0 -dx - |
Avatar: The Last Airbender |
v1.16.4 |
2024-08-09 |
sceDmacMemcpy(dest=041cfa00, src=08f26040, size=4096): overlapping read |
BOMBERMAN |
v1.16.4 |
2024-08-08 |
UNTESTED sceNetAdhocctlJoinEnterGameMode(LJbLM3c, 7c:da:ea:ac:89:01, 30000000, 0) at 088d02ac |
BOMBERMAN |
v1.17.1 |
2024-08-08 |
UNTESTED sceNetAdhocctlCreateEnterGameMode(LJbLM3c, 2, 2, 09fff470, 30000000, 0) at 088d05d4 |
Hot Shots Tennis: Get a Grip™ |
v1.16.4 |
2024-08-03 |
sceGeBreak(mode=0, unknown=08dfeba8): unknown ptr (valid) |
eFooTBall Play Cesar Patch |
v1.16.4 |
2024-07-13 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
eFootball PC - V. |
v1.17.1-329-g7d46f5a0a |
2024-10-12 |
Unknown GetPointer 00000000 PC 0884a930 LR 0884a938 |
eFootball PES 2024 "SNE" |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
eFootball 24 Idandroid Official |
v1.17.1-760-gf0e3fd277 |
2024-10-14 |
Unknown GetPointerWrite 00000000 PC 08816130 LR 08816144 |
eFootball 2024 By RH12 Official |
v1.17.1 |
2024-09-29 |
ReadFromHardware: Invalid address 00000000 near PC 08a478b4 LR 08a3fbe4 |
TEKKEN DARK RESURRECTION |
v1.16.4 |
2024-06-20 |
sceDmacMemcpy(dest=49c95500, src=49c714c0, size=2048): overlapping read |
eFootball Euro y Copa America By T. Bendezu |
v1.17.1-980-gabaea0197b |
2024-10-15 |
Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4 |
eFootball Euro y Copa America By T. Bendezu |
v1.17.1-980-gabaea0197b |
2024-10-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
eFootball Euro y Copa America By T. Bendezu |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
Call of Duty : Roads to Victory™ |
v1.16.4 |
2024-06-17 |
Failed decrypting the PRX (ret = -1, size = 4283605, psp_size = 4283952)! |
eFootball 2024 By Komo Valeri |
v1.17.1-980-gabaea0197b |
2024-10-11 |
Unknown GetPointerWrite 00000000 PC 088287f0 LR 08828800 |
Def Jam® Fight For NY™: The Takeover |
v1.16.4 |
2024-06-02 |
sceDmacMemcpy(dest=09a0d080, src=08400000, size=72384): overlapping read |
Driver 76 |
v1.16.4 |
2024-05-31 |
Unknown GetPointerWrite 000007fe PC 08000020 LR 08000020 |
eFootball 2024 By Komo Valeri |
v1.17.1-823-g0b76d443e2 |
2024-10-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
eFootball 24 Idandroid Official |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
eFootball 2024 By Komo Valeri |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
Def Jam® Fight For NY™: The Takeover |
v1.16.4 |
2024-05-28 |
sceDmacMemcpy(dest=09589940, src=08400000, size=641344): overlapping read |
WWE SmackDown vs. RAW 2009 |
v1.16.4 |
2024-05-27 |
Unknown GetPointer 0a3c3c2d PC 08a528d0 LR 08a528f0 |
WWE SmackDown vs. RAW 2009 |
v1.16.4 |
2024-05-27 |
Unknown GetPointerWrite 0a36ae81 PC 08a528d0 LR 08a528f0 |
MONSTER HUNTER PORTABLE 3rd |
v1.16.4 |
2024-05-20 |
__KernelStopThread: thread 362 does not exist (ApctlThread deleted) |
eFootball PES 2024 "SN3" |
v1.17.1-817-g13506d3d02 |
2024-10-15 |
sceNetAdhocMatchingInit(32768) at 08a71984 |
eFootball PES 2024 "SN3" |
v1.9.4 |
2024-10-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball PES 2024 "SN3" |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
eFootball Asian League 2024 by FJR PROJECT |
v1.17.1 |
2024-07-05 |
Savedata version requested: 3 |
B-Boy |
v1.16.4 |
2024-05-07 |
Unexpected mpeg first timestamp: 2d24c096c7e / 3102242073726 |
eFootball Chelito 19 |
v1.17.1 |
2024-09-08 |
Unknown GetPointer 2985e528 PC 0881c2e0 LR 0881c2e8 |
eFootball PC - V. |
v1.17.1-826-g80baaa5fc4 |
2024-10-15 |
Unknown GetPointerWrite 00000000 PC 08816154 LR 0881615c |
EA-Sports FC PC-V |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
NARUTO SHIPPUDEN: Ultimate Ninja Impact |
v1.17.4-1 |
2024-10-15 |
sceKernelCreateThread(name=nipvp): unsupported attributes 00001007 |
Silent Hill® Origins |
v1.16.4 |
2024-03-28 |
Unknown GE command : fddffd4f |
eFootball 2024 By RH12 Official |
v1.9.4 |
2024-08-09 |
ReadFromHardware: Invalid address 00000000 near PC 08a063b4 LR 08a3fbe4 |
Silent Hill® Origins |
v1.16.4 |
2024-03-18 |
Imm vertex used clip value, flags=279800 |
Ben 10 Alien Force: Vilgax Attacks |
v1.17.1 |
2024-03-17 |
Rendering to framebuffer offset at 04162000 +256x0 (stride 512) |
NARUTO Shippuden: Legends: Akatsuki Rising |
v1.16.4 |
2024-03-15 |
sceDmacMemcpy(dest=04138e80, src=0928f110, size=128): overlapping read |
eFootball PES 2021 T. Bendezu "C19" |
v1.16.4 |
2024-03-14 |
Unimplemented HLE function sceUtilityGetNetParam |
Silent Hill® Origins |
v1.16.4 |
2024-03-13 |
Unknown GE command : fe7fdc67 |
eFootball PC - V. |
v1.9.4 |
2024-10-15 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
eFootball Chelito 19 |
v1.16.4 |
2024-03-10 |
Unknown GetPointer 2c5c7d02 PC 0884d5b0 LR 0884d7d4 |
eFootball PC - V. |
v1.17.1-980-gabaea0197b |
2024-10-15 |
Unknown GetPointer 00000000 PC 0884d7b4 LR 0884d7d4 |
eFootball PC - V. |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
eFootball PC - V. |
v1.17.1-980-gabaea0197b |
2024-10-15 |
Unknown GetPointerWrite 00000000 PC 08816148 LR 0881615c |
Myuno eFootball 24 |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
Kenka Bancho: Badass Rumble |
v1.16.4 |
2024-03-06 |
00000000=sceUtilityScreenshotInitStart(0946b0b0) |
eFootball Play-C |
v1.9.4 |
2024-10-13 |
sceDmacMemcpy(dest=09054040, src=086ce940, size=1251008): overlapping read |
eFooTBall Play Cesar Patch |
v1.17.1 |
2024-07-13 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |
God of War™: Ghost of Sparta |
v1.16.4 |
2024-03-03 |
ReadFromHardware: Invalid address 027e003f near PC 08a64c00 LR 08a65414 |
God of War™: Ghost of Sparta |
v1.16.4 |
2024-03-03 |
ReadFromHardware: Invalid address 1828ddf8 near PC 08a64c1c LR 08a65414 |
Efootball 2022 Komo Valeri... |
v1.17.1 |
2024-10-15 |
Can't draw: No current render step. Step count: 0 |
Tomb Raider: Anniversary™ |
v1.16.4 |
2024-02-28 |
sceDmacMemcpy(dest=041d5c00, src=091ea5c0, size=12288): overlapping read |
Tomb Raider: Anniversary™ |
v1.16.4 |
2024-02-25 |
sceDmacMemcpy(dest=041c5000, src=09b10e60, size=9216): overlapping read |
Myuno eFootball 24 |
v1.17.1 |
2024-09-04 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 4256a74a |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 4253c56d |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 42598926 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Branch in Jump delay slot at 08f5a7f8 in block starting at 08f5a798 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Jump to invalid address: 03d69fc0 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 0000007b |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Jump to invalid address: 03eb3334 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Jump to invalid address: 03d6a264 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Branch in Jump delay slot at 08f5a7c4 in block starting at 08f5a798 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Jump to invalid address: 03d6a240 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Branch in Jump delay slot at 08f5a7c0 in block starting at 08f5a798 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Jump to invalid address: 03eb32e0 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 00000168 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
Jump to invalid address: 03d699e0 |
Dragon Ball Z Shin Budokai |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 42970000 |
ワンピース ROMANCE DAWN 冒険の夜明け |
v1.16.4 |
2024-02-24 |
MIPSCompileOp: Invalid instruction 42320000 |
La Boussole d'Or™ |
v1.16.4 |
2024-05-03 |
Unknown GE command : b7c2dbe5 |
BOMBERMAN |
v1.16.4 |
2024-02-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08890a90, pos=0, access=1, data=2, text=2 |
WWE SmackDown vs. RAW 2009 |
v1.16.4 |
2024-02-21 |
Unknown GetPointer 16e96eac PC 08a528d0 LR 08a528f0 |
WWE SmackDown vs. RAW 2009 |
v1.16.4 |
2024-02-21 |
Unknown GetPointerWrite 16ea4f39 PC 08a528d0 LR 08a528f0 |
Hen24 eFootball 24 |
v1.9.4 |
2024-10-15 |
Savedata version requested: 3 |
Mortal Kombat: Unchained |
v1.16.4 |
2024-02-17 |
__KernelStopThread: thread 338 does not exist (helper deleted) |
eFootball By TM ARTS |
v1.17.1-817-g13506d3d02 |
2024-09-16 |
Savedata version requested: 3 |
SBK-07 |
v1.16.4 |
2024-02-15 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 08ecbb80): duplicate handler |
SBK-07 |
v1.16.4 |
2024-02-15 |
sceKernelRegisterSubIntrHandler(30, 0, 08a24354, 08f822c0): duplicate handler |
Lego Star Wars II: The Original Trilogy |
v1.17.1 |
2024-08-21 |
Unaligned icache invalidation of 08605ef8 (08605ef8 + 0) at PC=088454a0 |
Petz® My Puppy Family |
v1.16.4 |
2024-02-14 |
00000000=sceUtilityScreenshotInitStart(097eb64c) |
Petz® My Puppy Family |
v1.16.4 |
2024-02-14 |
00000000=sceUtilityScreenshotInitStart(097cc0ec) |
遊☆戯☆王 5D's タッグフォース6 |
v1.16.4 |
2024-02-14 |
__KernelStopThread: thread 2852 does not exist (helper deleted) |
PES 2021 LIGA BETPLAY COLOMBIA KALETH MICKEY,YUNIER PB,MASTIV VELASQUEZ |
v1.16.4 |
2024-02-10 |
Unknown GetPointerWrite 00000001 PC 08a02afc LR 0887138c |
PES 2021 LIGA BETPLAY COLOMBIA KALETH MICKEY,YUNIER PB,MASTIV VELASQUEZ |
v1.16.4 |
2024-02-10 |
Unknown GetPointerWrite 0000002a PC 08a02afc LR 0887138c |
INTERNATIONAL CRICKET CAPTAIN III- ENG / ULES-00835 |
v1.16.4 |
2024-02-05 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |