aboutsummaryrefslogtreecommitdiff
path: root/common/scaler
diff options
context:
space:
mode:
Diffstat (limited to 'common/scaler')
-rw-r--r--common/scaler/hq2x.cpp2
-rw-r--r--common/scaler/hq3x.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/scaler/hq2x.cpp b/common/scaler/hq2x.cpp
index e0f29e8d85..3599c01b9b 100644
--- a/common/scaler/hq2x.cpp
+++ b/common/scaler/hq2x.cpp
@@ -49,7 +49,7 @@ static bool isAltiVecAvailable() {
int hasVectorUnit = 0;
size_t length = sizeof(hasVectorUnit);
int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0);
- if( 0 == error )
+ if ( 0 == error )
return hasVectorUnit != 0;
return false;
}
diff --git a/common/scaler/hq3x.cpp b/common/scaler/hq3x.cpp
index 8f077e6fe4..f0a92c533c 100644
--- a/common/scaler/hq3x.cpp
+++ b/common/scaler/hq3x.cpp
@@ -49,7 +49,7 @@ static bool isAltiVecAvailable() {
int hasVectorUnit = 0;
size_t length = sizeof(hasVectorUnit);
int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0);
- if( 0 == error )
+ if ( 0 == error )
return hasVectorUnit != 0;
return false;
}