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 |
Battlegrounds3 |
v1.12.3 |
2022-05-26 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0 |
Battlegrounds3 |
v1.12.3 |
2022-05-26 |
Unimplemented HLE function sceKernelDcacheWritebackAll |
Battlegrounds3 |
v1.12.3 |
2022-05-22 |
sceKernelCreateThread(name=ScePafJob): unsupported options parameter 09fbfcf0 |
Battlegrounds3 |
v1.12.3 |
2022-05-22 |
sceKernelCreateThread(name=ScePafThread): unsupported options parameter 09fbfd20 |
Battlegrounds3 |
v1.12.3 |
2022-05-21 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=1 |
Battlegrounds3 |
v1.12.3 |
2022-05-07 |
MFIC instruction hit (70020024) at 0894c1c4 |
Battlegrounds3 |
v1.12.3 |
2022-05-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08bead40, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-05-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143964328 |
Battlegrounds3 |
v1.12.3 |
2022-04-28 |
Video out requested, not supported: mode=0 size=512,272 |
Battlegrounds3 |
v1.12.3 |
2022-04-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-04-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000119, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-04-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.3 |
2022-04-18 |
sceKernelCreateSema(KSAP_ThLockSema) unsupported attr parameter: 00000011 |
Battlegrounds3 |
v1.12.3 |
2022-04-18 |
sceKernelCreateSema(KSAP_FnLockSema) unsupported attr parameter: 00000011 |
Battlegrounds3 |
v1.12.3 |
2022-04-17 |
MFIC instruction hit (70020024) at 088b63a8 |
Battlegrounds3 |
v1.12.3 |
2022-04-08 |
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 - |
Battlegrounds3 |
v1.12.3 |
2022-03-20 |
scePsmfPlayerSetPsmf*: incorrect PSMF magic (00000000), bad data |
Battlegrounds3 |
v1.12.3 |
2022-03-09 |
Unknown GE command : 39800000 |
Battlegrounds3 |
v1.12.3 |
2022-02-28 |
Unknown GetPointer 7f14b50d PC 00000000 LR 00000000 |
Battlegrounds3 |
v1.12.3 |
2022-02-28 |
Garbage libstub address 7f14b50d or end 03c0b0f4 |
Battlegrounds3 |
v1.12.3 |
2022-02-27 |
A save request is already running, not starting a new one |
Battlegrounds3 |
v1.12.3 |
2022-05-04 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5550, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-05-04 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3328, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.3 |
2022-02-18 |
MFIC instruction hit (70020024) at 08826a54 |
Battlegrounds3 |
v1.12.3 |
2022-04-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899b0cc, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-05-09 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04088000/04110000 |
Battlegrounds3 |
v1.12.3 |
2022-04-17 |
Video out requested, not supported: mode=0 size=512,512 |
Battlegrounds3 |
v1.12.3 |
2022-02-01 |
sceKernelCreateThread(name=PGE Gfx): unsupported attributes 00000006 |
Battlegrounds3 |
v1.12.3 |
2022-02-01 |
sceKernelCreateThread(name=PGE Texture): unsupported attributes 00000006 |
Battlegrounds3 |
v1.12.3 |
2022-02-01 |
sceKernelCreateThread(name=PGE File): unsupported attributes 00000006 |
Battlegrounds3 |
v1.12.3 |
2022-02-15 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167508176 |
Battlegrounds3 |
v1.12.3 |
2022-01-24 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145512184 |
Battlegrounds3 |
v1.12.3 |
2022-01-24 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147039492 |
Battlegrounds3 |
v1.12.3 |
2022-01-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00001234, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-01-23 |
MFIC instruction hit (70020024) at 08901204 |
Battlegrounds3 |
v1.12.2 |
2022-01-19 |
MFIC instruction hit (70020024) at 089d2e50 |
Battlegrounds3 |
v1.12.3 |
2022-01-18 |
FBO created from existing depthbuffer as color, 04000000/04128000 and 04178000/04000000 |
Battlegrounds3 |
v1.12.3 |
2022-01-16 |
sceKernelRegisterSubIntrHandler(30, 0, 089298c8, 00000000): duplicate handler |
Battlegrounds3 |
v1.12.3 |
2021-12-26 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 149307860 |
Battlegrounds3 |
v1.12.3 |
2021-12-25 |
MIPSCompileOp: Invalid instruction b100308f |
Battlegrounds3 |
v1.12.3 |
2021-12-25 |
MIPSCompileOp: Invalid instruction b0002c26 |
Battlegrounds3 |
v1.12.3 |
2021-12-24 |
MFIC instruction hit (70020024) at 08a703d8 |
Battlegrounds3 |
v1.12.3 |
2021-12-24 |
__KernelStopThread: thread 283 does not exist |
Battlegrounds3 |
v1.12.3 |
2021-12-24 |
Rendering to framebuffer offset: 040cc000 +65x0 |
Battlegrounds3 |
v1.12.3 |
2021-12-23 |
80000107=sceDisplaySetFrameBuf(04044000, 512, 1, 0): must change latched framebuf first |
Battlegrounds3 |
v1.12.3 |
2021-12-16 |
FBO created from existing depthbuffer as color, 04110000/00000000 and 04000000/04110000 |
Battlegrounds3 |
v1.12.3 |
2021-12-15 |
UNIMPL sceKernelSelfStopUnloadModule(00000001, 00000000, 00000000): game may have crashed |
Battlegrounds3 |
v1.12.3 |
2021-12-11 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
Battlegrounds3 |
v1.12.3 |
2021-12-07 |
sceGeBreak(mode=0, unknown=08a6ac58): unknown ptr (valid) |
Battlegrounds3 |
v1.12.3 |
2021-12-06 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 04044000/04088000 |
Battlegrounds3 |
v1.12.3 |
2021-12-06 |
FBO created from existing depthbuffer as color, 04088000/00000000 and 040cc000/04088000 |
Battlegrounds3 |
v1.12.3 |
2021-12-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145851408 |
Battlegrounds3 |
v1.12.3 |
2021-11-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=2 |
Battlegrounds3 |
v1.12.3 |
2021-11-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=0, text=1 |
Battlegrounds3 |
v1.12.3 |
2021-11-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2021-11-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.3 |
2022-03-31 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.3 |
2021-11-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349168 |
Battlegrounds3 |
v1.12.3 |
2022-03-14 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -1 |
Battlegrounds3 |
v1.12.3 |
2022-03-31 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146370816 |
Battlegrounds3 |
v1.12.3 |
2022-04-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2021-11-04 |
__KernelStopThread: thread 305 does not exist |
Battlegrounds3 |
v1.12.3 |
2021-11-04 |
80020001=sceKernelCreateSema(): invalid name |
Battlegrounds3 |
v1.12.3 |
2021-11-03 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2021-11-03 |
sceMpegRingbufferPut(): invalid mpeg data |
Battlegrounds3 |
v1.12.3 |
2022-04-19 |
BREAK instruction hit |
Battlegrounds3 |
v1.12.3 |
2022-05-13 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc68c0, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2021-10-27 |
MFIC instruction hit (70020024) at 088302ec |
Battlegrounds3 |
v1.12.2 |
2021-10-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.2 |
2021-10-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.2 |
2021-10-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.2 |
2021-10-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000007, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.3 |
2021-10-21 |
80420014=__sceSasCore(08af2040, 00001000): invalid address |
Battlegrounds3 |
v1.12.3 |
2021-10-21 |
80420014=__sceSasCore(08af2040, 00001400): invalid address |
Battlegrounds3 |
v1.12.2 |
2021-10-16 |
__KernelStopThread: thread 340 does not exist |
Battlegrounds3 |
v1.12.3 |
2022-05-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.2 |
2021-10-15 |
Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272 |
Battlegrounds3 |
v1.12.2 |
2021-10-15 |
Rendering to framebuffer offset: 04162000 +256x0 |
Battlegrounds3 |
v1.12.3 |
2022-04-28 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
Battlegrounds3 |
v1.12.3 |
2022-03-18 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.12.3 |
2022-05-26 |
Waiting thread for 20 that was already waiting for 20 |
Battlegrounds3 |
v1.11.3 |
2021-04-15 |
Failed decrypting the PRX (ret = -1, size = 7089641, psp_size = 7089984)! |
Battlegrounds3 |
v1.11.3 |
2021-04-15 |
80000107=sceDisplaySetFrameBuf(00000000, 0, 0, 0): must change latched framebuf first |
Battlegrounds3 |
v1.11.3 |
2021-04-11 |
Video out requested, not supported: mode=0 size=0,0 |
Battlegrounds3 |
v1.12.3 |
2022-04-18 |
sceKernelLoadModule: unsupported options size=00000014, flags=deadbeef, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.11.3 |
2021-04-06 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145635464 |
Battlegrounds3 |
v1.11.3 |
2021-04-06 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145544000 |
Battlegrounds3 |
v1.11.3 |
2021-04-05 |
VTYPE with morph used: THRU=0 TC=0 COL=0 POS=3 NRM=0 WT=0 NW=1 IDX=2 MC=2 |
Battlegrounds3 |
v1.11.3 |
2021-04-05 |
sceKernelCreateThread(name=ScePafJob): unsupported options parameter 09fbfdd0 |
Battlegrounds3 |
v1.11.3 |
2021-04-05 |
sceKernelCreateThread(name=ScePafJob): unsupported options parameter 09fbfd90 |
Battlegrounds3 |
v1.11.3 |
2021-04-05 |
sceKernelCreateThread(name=ScePafJob): unsupported options parameter 09fbfce0 |
Battlegrounds3 |
v1.12.3 |
2022-05-22 |
sceKernelCreateThread(name=ScePafJob): unsupported attributes 00000008 |
Battlegrounds3 |
v1.11.3 |
2021-03-30 |
sceKernelLoadModule: unsupported options size=00000014, flags=09fbfaa4, pos=0, access=1, data=1, text=1 |
Battlegrounds3 |
v1.11.3 |
2021-03-25 |
Unable to allocate kernel object, too many objects slots in use. |
Battlegrounds3 |
v1.12.2 |
2021-10-16 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=0, data=2, text=2 |
Battlegrounds3 |
v1.11.3 |
2021-03-22 |
Unknown GetPointer 00000000 PC 0881de74 LR 0882735c |
Battlegrounds3 |
v1.11.3 |
2021-03-19 |
Unknown GetPointer 00000000 PC 0882637c LR 0882637c |
Battlegrounds3 |
v1.12.3 |
2022-03-21 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872 |
Battlegrounds3 |
v1.12.3 |
2022-03-21 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024 |
Battlegrounds3 |
v1.12.3 |
2022-03-21 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256 |