aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_unai
diff options
context:
space:
mode:
authornotaz2016-04-01 01:49:55 +0300
committernotaz2016-04-01 02:39:58 +0300
commit8f2bb0cbd20c00475196d1efb72103b65e57bc66 (patch)
tree5ed73d69b8a3194f819b741f5f4872ede92d93ee /plugins/gpu_unai
parent8638b7ee92c5bad04f724b056efb47e390b2ad8c (diff)
downloadpcsx_rearmed-8f2bb0cbd20c00475196d1efb72103b65e57bc66.tar.gz
pcsx_rearmed-8f2bb0cbd20c00475196d1efb72103b65e57bc66.tar.bz2
pcsx_rearmed-8f2bb0cbd20c00475196d1efb72103b65e57bc66.zip
don't use __ARM_ARCH_7A__
github issue #68
Diffstat (limited to 'plugins/gpu_unai')
-rw-r--r--plugins/gpu_unai/gpulib_if.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/gpu_unai/gpulib_if.cpp b/plugins/gpu_unai/gpulib_if.cpp
index 646b0f2..2dedbf8 100644
--- a/plugins/gpu_unai/gpulib_if.cpp
+++ b/plugins/gpu_unai/gpulib_if.cpp
@@ -23,6 +23,7 @@
#include <stdlib.h>
#include <string.h>
#include "../gpulib/gpu.h"
+#include "arm_features.h"
#define u8 uint8_t
#define s8 int8_t
@@ -171,7 +172,7 @@ int do_cmd_list(unsigned int *list, int list_len, int *last_cmd)
unsigned int *list_end = list + list_len;
linesInterlace = force_interlace;
-#ifndef __ARM_ARCH_7A__ /* XXX */
+#ifdef HAVE_PRE_ARMV7 /* XXX */
linesInterlace |= gpu.status.interlace;
#endif