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 |
PES HAROUN ZASIA 2022 |
v1.13.1 |
2022-08-05 |
sceNetAdhocMatchingInit(32768) at 08a71984 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-07-22 |
sceDmacMemcpy(dest=09054040, src=086ce8c0, size=1251136): overlapping read |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-07-06 |
Unknown GetPointer 00000000 PC 08a029d8 LR 08816144 |
PES HAROUN ZASIA 2022 |
v1.8.0 |
2022-07-03 |
Unknown GetPointer 80020142 PC 08220d4c LR 08220d4c |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-07-15 |
807f00fd=sceMp3Init(00000000): invalid bitrate v0 l0 rate 0007 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-04-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-04-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-04-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-04-24 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000136, pos=0, access=1, data=2, text=2 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-04-10 |
Unknown GetPointer 00000000 PC 08815f14 LR 08000020 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-03-22 |
BREAK instruction hit |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-04-06 |
807f00fd=sceMp3Init(00000000): invalid bitrate v3 l0 rate 000c |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-03-15 |
sceDmacMemcpy(dest=08701400, src=040cc000, size=1043456): overlapping read |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-03-12 |
80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-03-12 |
sceGeBreak(mode=0, unknown=08d098b8): unknown ptr (valid) |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-07-15 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=0, data=0, text=0 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-03-05 |
80630006=sceAtracSetDataAndGetID(09a25200, 00004000): invalid RIFF header |
PES HAROUN ZASIA 2022 |
v1.10-6-g8ac4efd3c |
2022-02-27 |
Error in shader compilation: info: Compile failed.
ERROR: 0:459: 'mix' : no matching overloaded function found
ERROR: 0:459: 'assign' : cannot convert from 'float' to '3-component vector of float'
2 compilation errors. No code generated.
postshader
#ifdef GL_ES
precision mediump float;
#endif
// 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 li |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-02-25 |
MIPSCompileOp: Invalid instruction 00000001 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-02-23 |
Unknown GetPointer 00000000 PC 08000000 LR 08000000 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-03-19 |
Unexpected mpeg first timestamp: fffffffffff / 17592186044415 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-02-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-02-12 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771616 |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-07-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x809ce29b |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-07-03 |
Unimplemented HLE function sceKernelFindModuleByUID |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-07-03 |
Unknown syscall in known module 'SysMemForKernel': 0x3fc9ae6a |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-07-03 |
Unknown syscall in known module 'LoadExecForKernel': 0x05572a5f |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-02-09 |
__KernelStopThread: thread 288 does not exist |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-07-15 |
sceMp3Init: invalid data: not layer 3 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-06-25 |
MIPSCompileOp: Invalid instruction 46800410 |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-01-30 |
Error in shader program link: info: (unknown reason)
fs: thin3d
vs: thin3d
#version 300 es
#if __VERSION__ >= 130
#define attribute in
#define varying out
#endif
attribute vec3 Position;
attribute vec4 Color0;
attribute vec2 TexCoord0;
varying vec4 oColor0;
varying vec2 oTexCoord0;
uniform mat4 WorldViewProj;
void main() {
gl_Position = WorldViewProj * vec4(Position, 1.0);
oColor0 = Color0;
oTexCoord0 = TexCoord0;
}
|
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-01-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-01-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145224280 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-01-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 151249632 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-01-20 |
sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 146210816 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-01-20 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unimplemented HLE function Kprintf |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'SysMemForKernel': 0x7b749390 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'SysMemForKernel': 0xeb7a74db |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x57cf62dd |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x383f7bcc |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x616403ba |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x623ae665 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0xed1410e0 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0xc07bb470 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x402fcf22 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x812346e4 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x1fb15a32 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0xef9e4c70 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x55c20a00 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x58b1f937 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x4e3a1105 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x3f53e640 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x28b6489c |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0xd6da4ba1 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
Unknown syscall in known module 'ThreadManForKernel': 0x278c0df5 |
PES HAROUN ZASIA 2022 |
v1.10.3 |
2022-01-19 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-08-05 |
Unimplemented HLE function sceKernelDcacheWritebackAll |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-06-30 |
Game install with no files / data |
PES HAROUN ZASIA 2022 |
v1.12.3 |
2022-07-11 |
sceDmacMemcpy(dest=040cc000, src=08701400, size=1043456): overlapping read |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-07-16 |
80630006=sceAtracSetDataAndGetID(09a4ec00, 00001000): invalid RIFF header |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-05-25 |
sceDmacMemcpy(dest=040cc000, src=086ce8c0, size=1251136): overlapping read |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-08-14 |
Unknown GetPointer 00000000 PC 08815ef4 LR 08000020 |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-08-07 |
Unknown GetPointer 00000000 PC 08816130 LR 08816144 |
PES HAROUN ZASIA 2022 |
v1.11.3 |
2022-01-10 |
sceDmacMemcpy(dest=040cc000, src=09517240, size=557056): overlapping read |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-08-17 |
Savedata version requested: 3 |
PES HAROUN ZASIA 2022 |
v1.9.4 |
2022-08-17 |
Savedata version requested on save: 3 |