aboutsummaryrefslogtreecommitdiff
path: root/common/scaler/hq3x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/scaler/hq3x.cpp')
-rw-r--r--common/scaler/hq3x.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/common/scaler/hq3x.cpp b/common/scaler/hq3x.cpp
index f484e2eabb..6b40f676e2 100644
--- a/common/scaler/hq3x.cpp
+++ b/common/scaler/hq3x.cpp
@@ -2927,9 +2927,4 @@ void HQ3x(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch,
}
}
-void HQ3x(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- if (gBitFormat == 565)
- HQ3x<565>(srcPtr, srcPitch, dstPtr, dstPitch, width, height);
- else // gBitFormat == 555
- HQ3x<555>(srcPtr, srcPitch, dstPtr, dstPitch, width, height);
-}
+MAKE_WRAPPER(HQ3x)