From 3499746e173b925f317b6e1509ea933fb595f4fc Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Mon, 12 Dec 2022 15:29:05 +0000 Subject: [PATCH] Fix building gpu_unai on armv6 f23b103c8248c10855949bfb2185b6b10d4f0457 was missing changes to gpu_unai/gpulib_if.cpp --- plugins/gpu_unai/gpulib_if.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gpu_unai/gpulib_if.cpp b/plugins/gpu_unai/gpulib_if.cpp index 2dedbf83..45eac41d 100644 --- a/plugins/gpu_unai/gpulib_if.cpp +++ b/plugins/gpu_unai/gpulib_if.cpp @@ -173,7 +173,7 @@ int do_cmd_list(unsigned int *list, int list_len, int *last_cmd) linesInterlace = force_interlace; #ifdef HAVE_PRE_ARMV7 /* XXX */ - linesInterlace |= gpu.status.interlace; + linesInterlace |= !!(gpu.status & PSX_GPU_STATUS_INTERLACE); #endif for (; list < list_end; list += 1 + len) -- 2.39.2