aboutsummaryrefslogtreecommitdiff
path: root/graphics/scaler/hq2x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/scaler/hq2x.cpp')
-rw-r--r--graphics/scaler/hq2x.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/scaler/hq2x.cpp b/graphics/scaler/hq2x.cpp
index cd15e7f97b..ba89b4f9cf 100644
--- a/graphics/scaler/hq2x.cpp
+++ b/graphics/scaler/hq2x.cpp
@@ -21,7 +21,7 @@
*
*/
-#include "common/scaler/intern.h"
+#include "graphics/scaler/intern.h"
#ifdef USE_NASM
// Assembly version of HQ2x
@@ -128,13 +128,13 @@ static bool isAltiVecAvailable() {
#define bitFormat 565
void HQ2x_565(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq2x.h"
+ #include "graphics/scaler/hq2x.h"
}
#undef bitFormat
#define bitFormat 555
void HQ2x_555(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq2x.h"
+ #include "graphics/scaler/hq2x.h"
}
#undef bitFormat
@@ -144,13 +144,13 @@ void HQ2x_555(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPit
#define bitFormat 565
void HQ2x_565_Altivec(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq2x.h"
+ #include "graphics/scaler/hq2x.h"
}
#undef bitFormat
#define bitFormat 555
void HQ2x_555_Altivec(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq2x.h"
+ #include "graphics/scaler/hq2x.h"
}
#undef bitFormat
#endif