Recent logs - NEED FOR SPEED™ MOST WANTED 5-1-0

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
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-09-14 __KernelStopThread: thread 715 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-09-14 __KernelStopThread: thread 715 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-09-06 __KernelStopThread: thread 1362 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-08-25 __KernelStopThread: thread 1180 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-08-25 __KernelStopThread: thread 1180 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-08-20 FBO created from existing depthbuffer as color, 04198000/00000000 and 04000000/04198000
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-08-20 FBO created from existing depthbuffer as color, 04198000/00000000 and 04110000/04198000
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-08-20 __KernelStopThread: thread 676 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-08-20 __KernelStopThread: thread 676 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-08-18 __KernelStopThread: thread 3797 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-08-18 __KernelStopThread: thread 3797 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-08-15 __KernelStopThread: thread 1230 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-08-15 __KernelStopThread: thread 1230 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-08-06 __KernelStopThread: thread 652 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-08-06 __KernelStopThread: thread 652 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4-452-g3b31969931 2026-07-30 Error in shader program link: info: L0001 The fragment matrix variable WorldViewProj does not match the vertex variable WorldViewProj. The matrix stride does not match. fs: thin3d #version 320 es // Driver: Mali-G57 - GLSL 320 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) uniform sampler2D tex; uniform mat4 WorldViewProj; uniform vec2 TintSaturation; in lowp vec4 oColor0; // COLOR0 in highp vec2 oTexCoord0; // TEXCOORD0 out vec4 fragColor0; void main() { vec4 col = texture(tex, oTexCoord0).zyxw * oColor0; col.rgb *= oColor0.a; fragColor0 = col; } vs: thin3d #version 320 es // Driver: Mali-G57 - GLSL 320 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) vec3 rgb2hsv(vec3 c) { vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); float d = q.x - min(q.w, q.y); float e = 1.0e-10; return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); } vec3 hsv2rgb(vec3 c) { vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); } uniform mat4 WorldViewProj; uniform vec2 TintSaturation; in vec3 Position; in vec4 Color0; in vec2 TexCoord0; out lowp vec4 oColor0; // COLOR0 (0) out highp vec2 oTexCoord0; // TEXCOORD0 (1) void main() { gl_Position = mul(WorldViewProj, vec4(Position, 1.0)); vec3 hsv = rgb2hsv(Color0.xyz); hsv.x += TintSaturation.x; hsv.y *= TintSaturation.y; oColor0 = vec4(hsv2rgb(hsv), Color0.w); oTexCoord0 = TexCoord0; }
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4-452-g3b31969931 2026-07-30 Error in shader program link: info: L0001 The fragment matrix variable WorldViewProj does not match the vertex variable WorldViewProj. The matrix stride does not match. fs: thin3d #version 320 es // Driver: Mali-G57 - GLSL 320 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) uniform sampler2D tex; uniform mat4 WorldViewProj; uniform vec2 TintSaturation; in lowp vec4 oColor0; // COLOR0 out vec4 fragColor0; void main() { vec4 col = oColor0; col.rgb *= oColor0.a; fragColor0 = col; } vs: thin3d #version 320 es // Driver: Mali-G57 - GLSL 320 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) vec3 rgb2hsv(vec3 c) { vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); float d = q.x - min(q.w, q.y); float e = 1.0e-10; return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); } vec3 hsv2rgb(vec3 c) { vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); } uniform mat4 WorldViewProj; uniform vec2 TintSaturation; in vec3 Position; in vec4 Color0; in vec2 TexCoord0; out lowp vec4 oColor0; // COLOR0 (0) void main() { gl_Position = mul(WorldViewProj, vec4(Position, 1.0)); vec3 hsv = rgb2hsv(Color0.xyz); hsv.x += TintSaturation.x; hsv.y *= TintSaturation.y; oColor0 = vec4(hsv2rgb(hsv), Color0.w); }
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4-452-g3b31969931 2026-07-30 Error in shader program link: info: L0001 The fragment matrix variable WorldViewProj does not match the vertex variable WorldViewProj. The matrix stride does not match. fs: thin3d #version 320 es // Driver: Mali-G57 - GLSL 320 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) uniform sampler2D tex; uniform mat4 WorldViewProj; uniform vec2 TintSaturation; in lowp vec4 oColor0; // COLOR0 in highp vec2 oTexCoord0; // TEXCOORD0 out vec4 fragColor0; void main() { vec4 col = texture(tex, oTexCoord0) * oColor0; col.rgb *= oColor0.a; fragColor0 = col; } vs: thin3d #version 320 es // Driver: Mali-G57 - GLSL 320 precision highp float; #define gl_VertexIndex gl_VertexID #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) vec3 rgb2hsv(vec3 c) { vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); float d = q.x - min(q.w, q.y); float e = 1.0e-10; return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); } vec3 hsv2rgb(vec3 c) { vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); } uniform mat4 WorldViewProj; uniform vec2 TintSaturation; in vec3 Position; in vec4 Color0; in vec2 TexCoord0; out lowp vec4 oColor0; // COLOR0 (0) out highp vec2 oTexCoord0; // TEXCOORD0 (1) void main() { gl_Position = mul(WorldViewProj, vec4(Position, 1.0)); vec3 hsv = rgb2hsv(Color0.xyz); hsv.x += TintSaturation.x; hsv.y *= TintSaturation.y; oColor0 = vec4(hsv2rgb(hsv), Color0.w); oTexCoord0 = TexCoord0; }
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-07-22 __KernelStopThread: thread 674 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-07-22 __KernelStopThread: thread 674 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-07-22 __KernelStopThread: thread 662 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-07-22 __KernelStopThread: thread 662 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-22 __KernelStopThread: thread 902 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-22 __KernelStopThread: thread 902 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-20 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 r7p0-00rel1 [Revision 96995]. 01f01111:00050b21 HWX T N LM TexProjUV UVMtx Light: 0: c:1 t:0 1: c:1 t:0 2: c:1 t:0 3: c:1 t:0 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)) // 01f01111:00050b21 HWX T N LM TexProjUV UVMtx Light: 0: c:1 t:0 1: c:1 t:0 2: c:1 t:0 3: c:1 t:0 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 lowp vec3 u_lightambient0; uniform lowp vec3 u_lightdiffuse0; uniform lowp vec3 u_lightspecular0; uniform vec3 u_lightpos1; uniform lowp vec3 u_lightambient1; uniform lowp vec3 u_lightdiffuse1; uniform lowp vec3 u_lightspecular1; uniform vec3 u_lightpos2; uniform lowp vec3 u_lightambient2; uniform lowp vec3 u_lightdiffuse2; uniform lowp vec3 u_lightspecular2; uniform vec3 u_lightpos3; uniform lowp vec3 u_lightambient3; uniform lowp vec3 u_lightdiffuse3; uniform lowp vec3 u_lightspecular3; 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 lowp vec3 v_color1; 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); lowp vec3 lightSum1 = splat3(0.0); vec3 toLight; lowp vec3 diffuse; mediump float ldot; toLight = u_lightpos0; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse0 * diffuseColor) * max(ldot, 0.0); if (ldot >= 0.0) { if (u_matspecular.a > 0.0) { vec3 halfVec = toLight + vec3(0.0, 0.0, 1.0); float halfInvLen = inversesqrt(dot(halfVec, halfVec)); ldot = pow(max(dot(halfVec, worldnormal) * halfInvLen, 0.0), u_matspecular.a); } else { ldot = 1.0; } if (ldot > 0.0) lightSum1 += u_lightspecular0 * specularColor * ldot ; } lightSum0.rgb += (u_lightambient0 * ambientColor.rgb + diffuse); toLight = u_lightpos1; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse1 * diffuseColor) * max(ldot, 0.0); if (ldot >= 0.0) { if (u_matspecular.a > 0.0) { vec3 halfVec = toLight + vec3(0.0, 0.0, 1.0); float halfInvLen = inversesqrt(dot(halfVec, halfVec)); ldot = pow(max(dot(halfVec, worldnormal) * halfInvLen, 0.0), u_matspecular.a); } else { ldot = 1.0; } if (ldot > 0.0) lightSum1 += u_lightspecular1 * specularColor * ldot ; } lightSum0.rgb += (u_lightambient1 * ambientColor.rgb + diffuse); toLight = u_lightpos2; ldot = dot(toLight, worldnormal); diffuse = (u_lightdiffuse2 * diffuseColor) * max(ldot, 0.0); if (ldot >= 0.0) { if (u_matspecular.a > 0.0) { vec3 halfVec = toLight + vec3(0.0, 0.0, 1.0); float halfInvLen = inversesqrt(dot(halfVec, halfVec)); ldot = pow(max(dot(halfVec, worldnormal) * halfInvLen, 0.0), u_matspecular.a); } else { ldot = 1.0; } if (ldot > 0.0) lightSum1 += u_lightspecular2 * specularColor * ld
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-18 __KernelStopThread: thread 1131 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-18 __KernelStopThread: thread 1131 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-14 __KernelStopThread: thread 863 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-14 __KernelStopThread: thread 863 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-06 __KernelStopThread: thread 718 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-07-06 __KernelStopThread: thread 718 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-27 __KernelStopThread: thread 975 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-27 __KernelStopThread: thread 717 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-27 __KernelStopThread: thread 717 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-26 __KernelStopThread: thread 1174 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-26 __KernelStopThread: thread 1174 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-26 __KernelStopThread: thread 1664 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-26 __KernelStopThread: thread 1664 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-25 __KernelStopThread: thread 680 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-25 __KernelStopThread: thread 680 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-18 __KernelStopThread: thread 920 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-18 __KernelStopThread: thread 920 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-17 __KernelStopThread: thread 963 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-17 __KernelStopThread: thread 963 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-14 __KernelStopThread: thread 1410 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.4 2026-06-14 __KernelStopThread: thread 1410 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-06-08 Jump to invalid address: 02e29410
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-08 __KernelStopThread: thread 1911 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-08 __KernelStopThread: thread 1911 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-05 __KernelStopThread: thread 1597 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-05 __KernelStopThread: thread 1597 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-03 __KernelStopThread: thread 882 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-06-03 __KernelStopThread: thread 882 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-05-26 __KernelStopThread: thread 942 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-05-26 __KernelStopThread: thread 942 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-05-17 __KernelStopThread: thread 685 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-05-17 __KernelStopThread: thread 685 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-05-10 __KernelStopThread: thread 1643 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-05-10 __KernelStopThread: thread 1643 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-05-03 __KernelStopThread: thread 1077 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-05-03 __KernelStopThread: thread 1077 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-05-02 __KernelStopThread: thread 957 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-05-02 __KernelStopThread: thread 957 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.17.1-334-g1786a4ddb 2026-04-28 Unknown GetPointerWrite 0a004c88 PC 089d149c LR 089d14a4
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-04-23 __KernelStopThread: thread 2057 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.3 2026-04-23 __KernelStopThread: thread 2057 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.2 2026-04-19 __KernelStopThread: thread 1634 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.20.2 2026-04-19 __KernelStopThread: thread 1634 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.15.3 2026-04-16 __KernelStopThread: thread 869 does not exist (helper deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-13 __KernelStopThread: thread 1198 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-13 __KernelStopThread: thread 1198 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-12 __KernelStopThread: thread 670 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-12 __KernelStopThread: thread 670 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-11 __KernelStopThread: thread 2646 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-11 __KernelStopThread: thread 2646 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.17.1 2026-04-10 WriteToHardware: Invalid address 00000030 near PC 08840574 LR 08840574
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-09 __KernelStopThread: thread 2504 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-09 __KernelStopThread: thread 2504 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-07 __KernelStopThread: thread 1087 does not exist (ApctlThread deleted)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.19.3 2026-04-07 __KernelStopThread: thread 1087 does not exist (ApctlThread stopped)
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d1b0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d0c0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 022b10e0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0229d520
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d37990
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d0a0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d080
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d060
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d040
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d37450
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d371c0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d37000
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d36d60
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d36ad0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d365c0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d36400
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d36240
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 02d35fb0
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d020
NEED FOR SPEED™ MOST WANTED 5-1-0 v1.11.3 2026-04-05 Jump to invalid address: 0219d000