aboutsummaryrefslogtreecommitdiff
path: root/plugins/dfxvideo/soft.c
diff options
context:
space:
mode:
authornotaz2011-09-23 19:29:03 +0300
committernotaz2011-09-23 19:29:03 +0300
commita80ae4a0353fce94df700ec84222d3c56c3d813a (patch)
treec6b2e473c33365cf8b33ab859681edf72ab06b01 /plugins/dfxvideo/soft.c
parentaaac9c7e007b51aa74d18975f94bffdfed01c7e8 (diff)
downloadpcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.gz
pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.bz2
pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.zip
support armv5 build
Diffstat (limited to 'plugins/dfxvideo/soft.c')
-rw-r--r--plugins/dfxvideo/soft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dfxvideo/soft.c b/plugins/dfxvideo/soft.c
index 1b24624..160b0c4 100644
--- a/plugins/dfxvideo/soft.c
+++ b/plugins/dfxvideo/soft.c
@@ -1077,7 +1077,7 @@ static int left_B, delta_left_B, right_B, delta_right_B;
// USE_NASM
static inline int shl10idiv(int x, int y)
{
-#ifdef __arm__
+#ifdef __ARM_ARCH_7A__
// rearmed: let's use VFP divider instead
float r = 1024.0f * (float)x / (float)y;
return (int)r;