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 |
Over the Hedge™ Hammy Goes Nuts |
v1.15.3 |
2023-05-13 |
__KernelStopThread: thread 314 does not exist (helper deleted) |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2023-04-23 |
sceKernelLoadModule: unsupported options size=00000014, flags=08d74120, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.12.3 |
2023-03-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000001, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.12.3 |
2023-03-16 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,777-0,39 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,699-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,621-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,543-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,465-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,387-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,309-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,231-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,153-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.1 |
2023-03-07 |
UI scissor out of bounds in SavedataScreen: 1750,75-0,74 / 1600,900 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.4 |
2023-02-09 |
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].
01f10044:00090b30 HWX T N Tex TexProjNNrm UVMtx Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:0 3: c:0 t:0 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))
// 01f10044:00090b30 HWX T N Tex TexProjNNrm UVMtx Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:0 3: c:0 t:0 MatUp:1 Cull
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
uniform mediump mat4 u_texmtx;
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 lowp vec3 u_lightambient1;
uniform lowp vec3 u_lightdiffuse1;
uniform vec3 u_lightpos2;
uniform lowp vec3 u_lightambient2;
uniform lowp vec3 u_lightdiffuse2;
uniform vec3 u_lightpos3;
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 = u_matambientalpha;
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;
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);
lightScale = clamp(1.0 / dot(u_lightatt1, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse) * lightScale;
toLight = u_lightpos2;
ldot = dot(toLight, worldnormal);
diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse);
toLight = u_lightpos3;
ldot = dot(toLight, worldnormal);
diffuse = (u_lightdiffuse3 * diffuseColor) * max(ldot, 0.0);
lightSum0.rgb += (u_lightambient3 * ambientColor.rgb + diffuse);
v_color0 = clamp(lightSum0, 0.0, 1.0);
v_texcoord = mul(length(normal) == 0.0 ? vec4(0.0, 0.0, 0.0, 1.0) : vec4(normalize(normal), 1.0), u_texmtx).xyz * vec3(u_uvscaleoffset.xy, 1.0);
v_fogdepth = (viewPos.z + u_fogcoef.x) * u_fogcoef.y;
vec3 projPos = outPos.xyz / outPos.w;
float projZ = (projPos.z - u_depthRange.z) * u_depthRange.w;
if (u_cullRangeMin.w <= 0.0 || projZ * outPos.w > -outPos.w) {
if ((projPos.x < u_cullRangeMin.x || projPos.y < u_cullRangeMin.y) || (projPos.x > u_cullRangeMax.x || projPos.y > u_cullRangeMax.y)) {
outPos.xyzw = u_cullRangeMax. |
Over the Hedge™ Hammy Goes Nuts |
v1.14.2 |
2023-03-07 |
Attempting to texture from current render target (src=04000000 / target=04000000 / flags=7), making a copy |
Over the Hedge™ Hammy Goes Nuts |
v1.14.2 |
2023-01-16 |
Attempting to texture from current render target (src=04088000 / target=04088000 / flags=7), making a copy |
Over the Hedge™ Hammy Goes Nuts |
v1.13.2 |
2022-10-09 |
80630006=sceAtracSetData(1, 08b2e880, 00008000): invalid RIFF header |
Over the Hedge™ Hammy Goes Nuts |
v1.13.2 |
2022-10-09 |
80630006=sceAtracSetData(0, 08b0e800, 00008000): invalid RIFF header |
Over the Hedge™ Hammy Goes Nuts |
v1.14.4 |
2023-03-22 |
sceNetAdhocMatchingInit(32768) at 08a19284 |
Over the Hedge™ Hammy Goes Nuts |
v1.13.1 |
2022-09-05 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536 |
Over the Hedge™ Hammy Goes Nuts |
v1.12.3-1007-ga155c4972 |
2022-08-15 |
Attempted inverse for logic op: a |
Over the Hedge™ Hammy Goes Nuts |
v1.12.3 |
2022-08-03 |
GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040de000 offset: 0 (256x128 stride 256, 565) |
Over the Hedge™ Hammy Goes Nuts |
v1.12.3 |
2022-07-22 |
sceKernelLoadModule: unsupported options size=00000014, flags=089d33b8, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.11.3 |
2022-05-25 |
Unimplemented HLE function Kprintf |
Over the Hedge™ Hammy Goes Nuts |
v1.12.3 |
2022-03-18 |
UNIMPL sceUtilityLoadUsbModule(1) |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2022-01-11 |
Ignoring func export sceMt19937/f40c98e6, already implemented in HLE. |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2022-01-11 |
Ignoring func export sceMt19937/ecf5d379, already implemented in HLE. |
Over the Hedge™ Hammy Goes Nuts |
v1.11.3 |
2021-08-07 |
sceKernelLoadModule: unsupported options size=00000014, flags=08a0dc94, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
sceKernelCreateThread(name=sceNetIfhandle_Service): unsupported attributes 00001006 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Ignoring func export sceNetIfhandle/fd8585e1, already implemented in HLE. |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Ignoring func export sceNetIfhandle/c80181a2, already implemented in HLE. |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x369ed59d |
Over the Hedge™ Hammy Goes Nuts |
v1.13.2 |
2022-11-09 |
80000107=sceDisplaySetFrameBuf(00000000, 0, 0, 0): must change latched framebuf first |
Over the Hedge™ Hammy Goes Nuts |
v1.11.3 |
2021-07-01 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.11.3 |
2021-07-01 |
sceKernelCreateThread(name=sceNetAdhocAuth_Service): unsupported attributes 00001006 |
Over the Hedge™ Hammy Goes Nuts |
v1.13.2 |
2022-11-09 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.14.4 |
2023-05-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.13.2 |
2022-10-15 |
UNIMPL sceKernelStopUnloadSelfModuleWithStatus(00000001, 00000000, 00000000, 00000000, 00000000): game may have crashed |
Over the Hedge™ Hammy Goes Nuts |
v1.13.2 |
2022-10-15 |
BREAK instruction hit |
Over the Hedge™ Hammy Goes Nuts |
v1.11.2 |
2021-02-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.11.2 |
2021-02-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.11.2 |
2021-02-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.11.2 |
2021-02-28 |
sceKernelLoadModule: unsupported options size=00000014, flags=0899a904, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xa8aa591f |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xf6414a71 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xe7282cb6 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xd979e9bf |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x39810265 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x1d371b8a |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Unknown syscall in known module 'ThreadManForKernel': 0xb736e9ff |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Unknown syscall in known module 'ThreadManForKernel': 0xaf36d708 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xec0a693f |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xbed27435 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x89b3d48c |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2021-08-03 |
Unknown syscall in known module 'ThreadManForKernel': 0x56c039b5 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x33be4024 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x349b864d |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xdf52098f |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xfbfa697d |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x74829b76 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x884c9f90 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x7c41f2c2 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x876dbfad |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xf0b7da1c |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x7c0dc2a0 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xa8e8c846 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x87d4dd36 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x0d81716a |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xf3986382 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x18260574 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xe9b3061e |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x86255ada |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x8125221d |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xa66b0120 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xcd203292 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x30fd48f0 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x328c546a |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xbc6febc5 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x8ffdf9a2 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x6d212bac |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x1181e963 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xbd123d9e |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x68da9e36 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0x840e8133 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-15 |
Unknown syscall in known module 'ThreadManForKernel': 0xfccfad26 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-11-12 |
Video out requested, not supported: mode=0 size=0,0 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-08-17 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.10.3 |
2020-08-17 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 |
Over the Hedge™ Hammy Goes Nuts |
v1.8.0 |
2022-12-27 |
avcodec_decode_audio4: Error decoding audio -1094995529 / bebbb1b7 |
Over the Hedge™ Hammy Goes Nuts |
v1.8.0 |
2022-07-30 |
Unknown GetPointer 00000000 PC 089db298 LR 08000020 |
Over the Hedge™ Hammy Goes Nuts |
v1.6.3 |
2022-12-09 |
GL ran out of GPU memory; switching to low memory mode |
Over the Hedge™ Hammy Goes Nuts |
v1.6.3-276-g53f1624 |
2018-07-08 |
An uneaten prefix at end of block for 08ab255c |
Over the Hedge™ Hammy Goes Nuts |
v1.9.4 |
2023-06-03 |
An uneaten prefix at end of block: 08ab2694 |
Over the Hedge™ Hammy Goes Nuts |
v1.6.3-456-g6d0ed4a |
2022-09-30 |
An uneaten prefix at end of block for 08ab2678 |
Over the Hedge™ Hammy Goes Nuts |
v1.9.4 |
2023-03-22 |
UNIMPL sceUtilityGameSharingInitStart(08bff174) |
Over the Hedge™ Hammy Goes Nuts |
v1.9.4 |
2023-05-26 |
An uneaten prefix at end of block: 08ab2570 |
Over the Hedge™ Hammy Goes Nuts |
v1.5.2 |
2021-11-11 |
Loading module sceFont_Library with version 0101, devkit 00000000 |
Over the Hedge™ Hammy Goes Nuts |
v1.9.4 |
2023-06-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=1, data=2, text=2 |
Over the Hedge™ Hammy Goes Nuts |
v1.9.4 |
2023-06-03 |
VTYPE with morph used: THRU=0 TC=2 COL=0 POS=2 NRM=1 WT=1 NW=8 IDX=2 MC=8 |