Recent logs - Ford Racing Off Road

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
Ford Racing Off Road v1.14.1 2023-09-16 UI scissor out of bounds in GameSettingsScreen: 588,0-2487,1361 / 3097,1360
Ford Racing Off Road v1.10.3 2023-07-06 sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612
Ford Racing Off Road v1.10.3 2023-07-06 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488
Ford Racing Off Road v1.13.1-242-g6c46095c3 2023-05-07 Error in shader compilation: info: ERROR: 0:19: Incompatible types in initialization (and no available implicit conversion) ERROR: 0:23: Use of undeclared identifier 'tsize' ERROR: 0:25: Use of undeclared identifier 'tsize' 00000000:00000062 Tex TexAlpha Depal TFuncMod #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require // Driver: Apple A11 GPU - GLSL 300 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) precision highp int; uniform sampler2D tex; uniform sampler2D pal; uniform uint u_depal_mask_shift_off_fmt; in lowp vec4 v_color0; in mediump vec3 v_texcoord; out vec4 fragColor0; void main() { vec2 uv = v_texcoord.xy; vec2 uv_round; vec2 tsize = textureSize(tex, 0).xy; vec2 fraction; bool bilinear = (u_depal_mask_shift_off_fmt >> 31) != 0U; if (bilinear) { uv_round = uv * tsize - vec2(0.5, 0.5); fraction = fract(uv_round); uv_round = (uv_round - fraction + vec2(0.5, 0.5)) / tsize; } else { uv_round = uv; } highp vec4 t = texture(tex, uv_round); highp vec4 t1 = textureOffset(tex, uv_round, ivec2(1, 0)); highp vec4 t2 = textureOffset(tex, uv_round, ivec2(0, 1)); highp vec4 t3 = textureOffset(tex, uv_round, ivec2(1, 1)); uint depalMask = (u_depal_mask_shift_off_fmt & 0xFFU); uint depalShift = (u_depal_mask_shift_off_fmt >> 8) & 0xFFU; uint depalOffset = ((u_depal_mask_shift_off_fmt >> 16) & 0xFFU) << 4; uint depalFmt = (u_depal_mask_shift_off_fmt >> 24) & 0x3U; uvec4 col; uint index0; uint index1; uint index2; uint index3; switch (int(depalFmt)) { case 0: col = uvec4(t.rgb * vec3(31.99, 63.99, 31.99), 0); index0 = (col.b << 11) | (col.g << 5) | (col.r); if (bilinear) { col = uvec4(t1.rgb * vec3(31.99, 63.99, 31.99), 0); index1 = (col.b << 11) | (col.g << 5) | (col.r); col = uvec4(t2.rgb * vec3(31.99, 63.99, 31.99), 0); index2 = (col.b << 11) | (col.g << 5) | (col.r); col = uvec4(t3.rgb * vec3(31.99, 63.99, 31.99), 0); index3 = (col.b << 11) | (col.g << 5) | (col.r); } break; case 1: col = uvec4(t.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index0 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); if (bilinear) { col = uvec4(t1.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index1 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); col = uvec4(t2.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index2 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); col = uvec4(t3.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index3 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); } break; case 2: col = uvec4(t.rgba * 15.99); index0 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); if (bilinear) { col = uvec4(t1.rgba * 15.99); index1 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); col = uvec4(t2.rgba * 15.99); index2 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); col = uvec4(t3.rgba * 15.99); index3 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); } break; case 3: col = uvec4(t.rgba * 255.99); index0 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); if (bilinear) { col = uvec4(t1.rgba * 255.99); index1 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); col = uvec4(t2.rgba * 255.99); index2 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); col = uvec4(t3.rgba * 255.99); index3 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); } break; }; index0 = ((index0 >> depalShift) & depalMask) | depalOffset; t = texelFetch(pal, ivec2(index0, 0), 0); if (bilinear && !(index0 == index1 && index1 == index2 && index2 == index3)) { index1 = ((index1 >> depalShift) & depalMask) | depalOffset; index2 = ((index2 >> depalShift) & depalMask) | depalOffset; index3 = ((index3 >> depalShift) & depalMask) | depalOffset; t1 = texelFetch(pal, ivec2(index1, 0), 0); t2 = texelFetch(pal, ivec2(index2, 0),
Ford Racing Off Road v1.13.1-242-g6c46095c3 2023-05-07 Error in shader compilation: info: ERROR: 0:21: Incompatible types in initialization (and no available implicit conversion) ERROR: 0:25: Use of undeclared identifier 'tsize' ERROR: 0:27: Use of undeclared identifier 'tsize' 00000000:000003e2 Tex TexAlpha Depal TClampST TFuncMod #version 300 es #extension GL_EXT_shader_framebuffer_fetch : require // Driver: Apple A11 GPU - GLSL 300 #define DISCARD discard precision lowp float; precision highp int; #define splat3(x) vec3(x) #define mul(x, y) ((x) * (y)) precision highp int; uniform sampler2D tex; uniform vec4 u_texclamp; uniform sampler2D pal; uniform uint u_depal_mask_shift_off_fmt; in lowp vec4 v_color0; in mediump vec3 v_texcoord; out vec4 fragColor0; void main() { vec2 fixedcoord = vec2(clamp(v_texcoord.x, u_texclamp.z, u_texclamp.x - u_texclamp.z), clamp(v_texcoord.y, u_texclamp.w, u_texclamp.y - u_texclamp.w)); vec2 uv = fixedcoord.xy; vec2 uv_round; vec2 tsize = textureSize(tex, 0).xy; vec2 fraction; bool bilinear = (u_depal_mask_shift_off_fmt >> 31) != 0U; if (bilinear) { uv_round = uv * tsize - vec2(0.5, 0.5); fraction = fract(uv_round); uv_round = (uv_round - fraction + vec2(0.5, 0.5)) / tsize; } else { uv_round = uv; } highp vec4 t = texture(tex, uv_round); highp vec4 t1 = textureOffset(tex, uv_round, ivec2(1, 0)); highp vec4 t2 = textureOffset(tex, uv_round, ivec2(0, 1)); highp vec4 t3 = textureOffset(tex, uv_round, ivec2(1, 1)); uint depalMask = (u_depal_mask_shift_off_fmt & 0xFFU); uint depalShift = (u_depal_mask_shift_off_fmt >> 8) & 0xFFU; uint depalOffset = ((u_depal_mask_shift_off_fmt >> 16) & 0xFFU) << 4; uint depalFmt = (u_depal_mask_shift_off_fmt >> 24) & 0x3U; uvec4 col; uint index0; uint index1; uint index2; uint index3; switch (int(depalFmt)) { case 0: col = uvec4(t.rgb * vec3(31.99, 63.99, 31.99), 0); index0 = (col.b << 11) | (col.g << 5) | (col.r); if (bilinear) { col = uvec4(t1.rgb * vec3(31.99, 63.99, 31.99), 0); index1 = (col.b << 11) | (col.g << 5) | (col.r); col = uvec4(t2.rgb * vec3(31.99, 63.99, 31.99), 0); index2 = (col.b << 11) | (col.g << 5) | (col.r); col = uvec4(t3.rgb * vec3(31.99, 63.99, 31.99), 0); index3 = (col.b << 11) | (col.g << 5) | (col.r); } break; case 1: col = uvec4(t.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index0 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); if (bilinear) { col = uvec4(t1.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index1 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); col = uvec4(t2.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index2 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); col = uvec4(t3.rgba * vec4(31.99, 31.99, 31.99, 1.0)); index3 = (col.a << 15) | (col.b << 10) | (col.g << 5) | (col.r); } break; case 2: col = uvec4(t.rgba * 15.99); index0 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); if (bilinear) { col = uvec4(t1.rgba * 15.99); index1 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); col = uvec4(t2.rgba * 15.99); index2 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); col = uvec4(t3.rgba * 15.99); index3 = (col.a << 12) | (col.b << 8) | (col.g << 4) | (col.r); } break; case 3: col = uvec4(t.rgba * 255.99); index0 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); if (bilinear) { col = uvec4(t1.rgba * 255.99); index1 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); col = uvec4(t2.rgba * 255.99); index2 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); col = uvec4(t3.rgba * 255.99); index3 = (col.a << 24) | (col.b << 16) | (col.g << 8) | (col.r); } break; }; index0 = ((index0 >> depalShift) & depalMask) | depalOffset; t = texelFetch(pal, ivec2(index0, 0), 0); if (bilinear && !(index0 == index1 && index1 == index2 && index2 == index3)) { index1 = ((index1 >> depalShift) & depalMask) | depalOffset; index2 = ((index2 >> depalS
Ford Racing Off Road v1.11.3 2023-02-13 sceKernelLoadModule: unsupported options size=00000014, flags=08d74120, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.10.3 2023-02-13 RET: Stack empty!
Ford Racing Off Road v1.17.1 2024-03-24 565 depal unsupported: shift=3 mask=fc offset=0
Ford Racing Off Road v1.11.3 2022-12-04 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296812
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142644872
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142637024
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5164, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349168
Ford Racing Off Road v1.13.2 2022-11-05 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771616
Ford Racing Off Road v1.13.2 2023-02-15 GetFramebufferCandidates(DEPTH): Multiple (3) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16): [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:040b0000/256 Z:04088000/512 X:0 Y:0 reint: false] [C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false]
Ford Racing Off Road v1.13.2 2022-09-30 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089d5494, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.13.2 2022-09-30 sceKernelLoadModuleByID: unsupported options size=00000014, flags=08aa3278, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144918352
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144907468
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 153291632
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 144316544
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 167771664
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 142702700
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.13.1 2022-09-23 sceKernelLoadModule: unsupported options size=00000014, flags=08987840, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.13.1 2022-09-03 sceKernelLoadModule: unsupported options size=00000014, flags=08a87160, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.13.1 2022-08-29 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145349120
Ford Racing Off Road v1.13.2 2022-11-09 sceKernelCreateSema(RealMutex) unsupported options parameter, size = -65536
Ford Racing Off Road v1.13.1 2022-08-28 GetFramebufferCandidates(DEPTH): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16): [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false]
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 142748256
Ford Racing Off Road v1.13.2 2022-11-16 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146059204
Ford Racing Off Road v1.13.1 2022-08-29 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.13.1 2022-08-29 sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.13.2 2023-01-12 GetFramebufferCandidates(DEPTH): Multiple (3) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16): [C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:040b0000/256 Z:04088000/512 X:0 Y:0 reint: false]
Ford Racing Off Road v1.13.2 2022-11-28 GetFramebufferCandidates(DEPTH): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16): [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:040b0000/256 Z:04088000/512 X:0 Y:0 reint: false]
Ford Racing Off Road v1.13.1 2022-08-16 Unexpected mpeg first timestamp: c0068000001 / 13195884363777
Ford Racing Off Road v1.13.1 2022-08-16 Unknown GE command : b7c0c0c0
Ford Racing Off Road v1.13.1 2022-08-16 Video out requested, not supported: mode=0 size=0,0
Ford Racing Off Road v1.13.1 2022-08-16 80630006=sceAtracSetDataAndGetID(08b3d9c4, 00008000): invalid RIFF header
Ford Racing Off Road v1.13.1 2022-12-20 sceKernelCreateSema(SNDMUTEX) unsupported options parameter, size = 167508176
Ford Racing Off Road v1.13.2 2024-02-29 GetFramebufferCandidates(DEPTH): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16): [C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false]
Ford Racing Off Road v1.12.3 2022-07-29 GE Interrupt: newState might be 13
Ford Racing Off Road v1.12.3 2022-07-29 GE Interrupt: newState might be 12
Ford Racing Off Road v1.12.3 2022-07-29 GE Interrupt: newState might be 0
Ford Racing Off Road v1.12.3 2022-07-29 GE Interrupt: newState might be 11
Ford Racing Off Road v1.12.3 2022-07-29 GE Interrupt: newState might be 10
Ford Racing Off Road v1.12.3 2022-07-18 sceKernelLoadModule: unsupported options size=00000014, flags=08d11560, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.12.3 2022-07-18 sceKernelLoadModule: unsupported options size=00000014, flags=08857c2c, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.10.3 2022-07-16 Unknown syscall in known module 'sceAudio': 0x46ebb729
Ford Racing Off Road v1.10.3 2022-07-16 Unknown syscall in known module 'sceAudio': 0x20628e6f
Ford Racing Off Road v1.10.3 2022-07-16 Unknown syscall in known module 'ThreadManForUser': 0x71ec4271
Ford Racing Off Road v1.10.3 2022-07-16 Unknown syscall in known module 'IoFileMgrForUser': 0x05572a5f
Ford Racing Off Road v1.12.3 2022-07-13 sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.12.3 2022-07-13 sceKernelLoadModule: unsupported options size=00000014, flags=000001a4, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.12.3 2022-07-13 sceKernelLoadModule: unsupported options size=00000014, flags=0899a92c, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.12.3 2022-07-07 sceGeListEnqueue: invalid address 40000000
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 1431655765
Ford Racing Off Road v1.12.3 2022-06-19 80630006=sceAtracSetDataAndGetID(08d44140, 00020000): invalid RIFF header
Ford Racing Off Road v1.12.3 2022-06-15 GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 04162000 offset: 0 (256x256 stride 512, 8888)
Ford Racing Off Road v1.12.3 2022-06-15 Ignoring possible texturing from framebuffer at 04161800 +0x64 / 480x272
Ford Racing Off Road v1.12.3 2022-06-09 80630006=sceAtracSetDataAndGetID(09a91e40, 00014000): invalid RIFF header
Ford Racing Off Road v1.12.3 2022-06-09 80630006=sceAtracSetDataAndGetID(09a7ddc0, 00014000): invalid RIFF header
Ford Racing Off Road v1.12.3 2022-06-09 80000107=sceDisplaySetFrameBuf(00000000, 0, 0, 0): must change latched framebuf first
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=2
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=0, text=1
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 147649040
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146303628
Ford Racing Off Road v1.13.2 2022-11-09 BREAK instruction hit
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146805524
Ford Racing Off Road v1.13.2 2022-09-19 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 464
Ford Racing Off Road v1.11 2022-04-06 sceKernelCreateSema(RealMutex) unsupported options parameter, size = 146185776
Ford Racing Off Road v1.12.3 2022-03-15 sceKernelCreateThread(name=scePsmf_library): unsupported attributes 00000006
Ford Racing Off Road v1.12.3 2022-06-19 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.12.3 2022-06-09 sceKernelLoadModule: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.12.3 2022-01-29 Waiting thread for 20 that was already waiting for 20
Ford Racing Off Road v1.12.3 2022-01-14 Rendering to framebuffer offset: 040cc000 +65x0
Ford Racing Off Road v1.12.3 2022-01-14 80630007=sceAtracSetData(2, 08d13140, 00038000): atracID uses different codec type than data
Ford Racing Off Road v1.12.3 2022-01-14 sceGeBreak(mode=0, unknown=08d098b8): unknown ptr (valid)
Ford Racing Off Road v1.13.2 2022-09-17 sceKernelLoadModuleByID: unsupported options size=00000014, flags=08bc68c0, pos=0, access=1, data=2, text=2
Ford Racing Off Road v1.12.3 2021-12-24 80630006=sceAtracSetDataAndGetID(08a87000, 80020323): invalid RIFF header
Ford Racing Off Road v1.12.3 2021-11-07 80000107=sceDisplaySetFrameBuf(04100000, 1024, 1, 0): must change latched framebuf first
Ford Racing Off Road v1.11.3 2021-10-09 Unknown GetPointer 00000000 PC 08815ef4 LR 08000020
Ford Racing Off Road v1.11.3 2021-06-16 GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040de000 offset: 0 (256x128 stride 256, 565)
Ford Racing Off Road v1.9.4 2022-08-04 Unknown GetPointer 00000000 PC 08804128 LR 08000030
Ford Racing Off Road v1.11.3 2021-05-22 Rendering from framebuf with offset 04044000 -> 04000000+0x136
Ford Racing Off Road v1.11.3 2021-05-22 sceIoAssign(memstick:, msstor0p1:/, fatms0:, IOASSIGN_RDWR, 00000000, 0)
Ford Racing Off Road v1.13.2 2022-09-30 sceKernelLoadModuleByID: unsupported options size=00000014, flags=00000000, pos=0, access=1, data=1, text=1
Ford Racing Off Road v1.10.3 2021-04-04 80630007=sceAtracSetData(1, 08d29808, 00010000): atracID uses different codec type than data
Ford Racing Off Road v1.10.3 2021-04-04 80630007=sceAtracSetData(0, 08d19800, 00010000): atracID uses different codec type than data
Ford Racing Off Road v1.11.1 2021-04-02 GetFramebufferCandidates(COLOR): Multiple (2) candidate framebuffers. texaddr: 040dc000 offset: 0 (128x128 stride 128, 5551)
Ford Racing Off Road v1.12.3 2023-11-21 GetFramebufferCandidates(DEPTH): Multiple (2) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16)
Ford Racing Off Road v1.10.3 2020-12-01 sceKernelCreateThread(name=sceNetIfhandle_Service): unsupported attributes 00001006
Ford Racing Off Road v1.10.3 2020-12-01 Ignoring func export sceNetIfhandle/fd8585e1, already implemented in HLE.
Ford Racing Off Road v1.10.3 2020-12-01 Ignoring func export sceNetIfhandle/c80181a2, already implemented in HLE.
Ford Racing Off Road v1.10.3 2020-12-01 Unknown syscall in known module 'ThreadManForKernel': 0x369ed59d
Ford Racing Off Road v1.10.3 2020-12-01 Unknown syscall in known module 'ThreadManForKernel': 0x39810265
Ford Racing Off Road v1.10.3 2020-12-01 Unknown syscall in known module 'ThreadManForKernel': 0xb736e9ff
Ford Racing Off Road v1.10.3 2020-12-01 Unknown syscall in known module 'ThreadManForKernel': 0xaf36d708
Ford Racing Off Road v1.10.3 2020-12-01 Unknown syscall in known module 'ThreadManForKernel': 0x89b3d48c