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 | 
			
				| Medal of Honor Heroes™ | v1.18.1 | 2025-05-27 | __KernelStopThread: thread 1835 does not exist (ApctlThread stopped) | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-05-27 | __KernelStopThread: thread 1835 does not exist (ApctlThread deleted) | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-02-18 | __KernelStopThread: thread 441 does not exist (ApctlThread deleted) | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-01-11 | Can't draw: No current render step. Step count: 0 | 
				| Medal of Honor Heroes™ | v1.18.1 | 2024-12-10 | 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 r10p0-00dev0 [Revision 96995].
01f30444:00000b28 HWX C T N Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:0 MatUp:3 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))
// 01f30444:00000b28 HWX C T N Light: 0: c:0 t:1 1: c:0 t:1 2: c:0 t:1 3: c:0 t:0 MatUp:3 Cull 
attribute vec3 position;
attribute mediump vec3 normal;
attribute vec2 texcoord;
attribute lowp vec4 color0;
uniform mat4 u_proj;
uniform mat4 u_world;
uniform mat4 u_view;
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 mediump vec3 u_lightatt2;
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 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 = color0;
  vec3 diffuseColor = color0.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 - worldpos;
  distance = length(toLight);
  toLight /= distance;
  ldot = dot(toLight, worldnormal);
  lightScale = clamp(1.0 / dot(u_lightatt2, vec3(1.0, distance, distance*distance)), 0.0, 1.0);
  diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0);
  lightSum0.rgb += (u_lightambient2 * ambientColor.rgb + diffuse) * lightScale;
  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 = vec3(texcoord.xy * u_uvscaleoffset.xy, 0.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)) { | 
				| Medal of Honor Heroes™ | v1.11.3 | 2024-09-28 | sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.11.3 | 2024-09-28 | sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.11.3 | 2024-02-28 | Unknown GetPointer 00000000 PC 089d8778 LR 089d8778 | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-02-18 | __KernelStopThread: thread 441 does not exist (ApctlThread stopped) | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-02-20 | __KernelStopThread: thread 442 does not exist (ApctlThread deleted) | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-02-20 | __KernelStopThread: thread 442 does not exist (ApctlThread stopped) | 
				| Medal of Honor Heroes™ | v1.13.1 | 2022-08-20 | sceKernelLoadModule: unsupported options size=00000014, flags=08d11560, pos=0, access=1, data=2, text=2 | 
				| Medal of Honor Heroes™ | v1.13.1 | 2022-08-20 | sceKernelLoadModule: unsupported options size=00000014, flags=08857c2c, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-03-09 | sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5550, pos=0, access=1, data=2, text=2 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-03-09 | sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3328, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 5 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 4 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 3 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 1 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 0 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 7 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-27 | GE Interrupt: newState might be 6 | 
				| Medal of Honor Heroes™ | v1.12.1 | 2021-11-02 | An uneaten prefix at end of block: 08a68174 | 
				| Medal of Honor Heroes™ | v1.13.1 | 2022-08-20 | sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=1, access=1, data=2, text=2 | 
				| Medal of Honor Heroes™ | v1.11.3 | 2021-05-31 | Unimplemented HLE function sceNetResolverTerm | 
				| Medal of Honor Heroes™ | v1.11.3 | 2021-05-16 | sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145752064 | 
				| Medal of Honor Heroes™ | v1.11.3 | 2021-05-16 | sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'SysclibForKernel': 0xb49a7697 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unimplemented HLE function Kprintf | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | sceKernelCreateThread(name=sceUSB_PSPComm_Driver): unsupported attributes 00001006 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'SysMemForKernel': 0x7b749390 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'SysMemForKernel': 0xeb7a74db | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'ThreadManForKernel': 0x57cf62dd | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'ThreadManForKernel': 0x383f7bcc | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'ThreadManForKernel': 0x623ae665 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'ThreadManForKernel': 0xed1410e0 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'ThreadManForKernel': 0xc07bb470 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | Unknown syscall in known module 'ThreadManForKernel': 0x402fcf22 | 
				| Medal of Honor Heroes™ | v1.18.1 | 2025-05-25 | Unimplemented HLE function sceNetResolverCreate | 
				| Medal of Honor Heroes™ | v1.11.2 | 2021-02-24 | sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145634952 | 
				| Medal of Honor Heroes™ | v1.11.2 | 2021-02-24 | sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 145543488 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | sceKernelLoadModule: unsupported options size=00000014, flags=088eb174, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-12-08 | sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296776 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-16 | sceKernelCreateSema(RealSignal) unsupported options parameter, size = 144665236 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-16 | sceKernelCreateSema(TibMutex) unsupported options parameter, size = 145830672 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-16 | sceKernelCreateSema(TibMutex) unsupported options parameter, size = 144528672 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-16 | sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144665236 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-16 | sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167509712 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-05-16 | sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-14 | sceKernelCreateSema(RealMutex) unsupported options parameter, size = 34520 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | 80020001=sceKernelCreateMutex(): invalid name | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | sceKernelCreateThread(name=sceNetAdhocAuth_Service): unsupported attributes 00001006 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0x293b45b8 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0x7e65b999 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0x6652b8ca | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0x18260574 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0xe9b3061e | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0x86255ada | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-10-20 | Unknown syscall in known module 'ThreadManForKernel': 0x8125221d | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | sceKernelCreateThread(name=sceMemab): unsupported attributes 00001006 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | sceKernelCreateThread(name=sceNetIfhandle_Service): unsupported attributes 00001006 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Ignoring func export sceNetIfhandle/fd8585e1, already implemented in HLE. | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Ignoring func export sceNetIfhandle/c80181a2, already implemented in HLE. | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Unknown syscall in known module 'ThreadManForKernel': 0x369ed59d | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Unknown syscall in known module 'ThreadManForKernel': 0x39810265 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Unknown syscall in known module 'ThreadManForKernel': 0xb736e9ff | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Unknown syscall in known module 'ThreadManForKernel': 0xaf36d708 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Unknown syscall in known module 'ThreadManForKernel': 0x89b3d48c | 
				| Medal of Honor Heroes™ | v1.10.3 | 2021-01-19 | Unknown syscall in known module 'ThreadManForKernel': 0x56c039b5 | 
				| Medal of Honor Heroes™ | v1.12.3 | 2022-01-15 | sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 | 
				| Medal of Honor Heroes™ | v1.11.2 | 2021-02-24 | sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=1, text=1 | 
				| Medal of Honor Heroes™ | v1.10.3 | 2020-11-16 | sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2 | 
				| Medal of Honor Heroes™ | v1.17.1 | 2024-09-18 | Unexpected mpeg first timestamp: a4d0 / 42192 | 
				| Medal of Honor Heroes™ | v1.9.4 | 2021-03-18 | Savedata version requested: 3 | 
				| Medal of Honor Heroes™ | v1.9.4 | 2025-07-01 | Render to texture with incompatible formats 3 != 0 at 04000000 | 
				| Medal of Honor Heroes™ | v1.9.4 | 2025-03-10 | RET: Stack empty! | 
				| Medal of Honor Heroes™ | v1.7.5 | 2024-11-07 | Render to texture with incompatible formats 3 != 0 at 00000000 | 
				| Medal of Honor Heroes™ | v1.9.4 | 2025-10-03 | sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167768912 |