aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorKostas Nakos2009-07-12 15:59:56 +0000
committerKostas Nakos2009-07-12 15:59:56 +0000
commit810bbca93c54bed741dd6f4f626c4845e65ac0ba (patch)
tree3c92208fa375f68a9b7738c0a53efc5cf7911c01 /engines/scumm
parentd6fb5bb9227aeaf5452af722d27bdde4c6805337 (diff)
downloadscummvm-rg350-810bbca93c54bed741dd6f4f626c4845e65ac0ba.tar.gz
scummvm-rg350-810bbca93c54bed741dd6f4f626c4845e65ac0ba.tar.bz2
scummvm-rg350-810bbca93c54bed741dd6f4f626c4845e65ac0ba.zip
fix build with arm-asm routines
svn-id: r42420
Diffstat (limited to 'engines/scumm')
-rwxr-xr-x[-rw-r--r--]engines/scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp
index 07640ca551..5961ec4013 100644..100755
--- a/engines/scumm/gfx.cpp
+++ b/engines/scumm/gfx.cpp
@@ -36,7 +36,7 @@
#include "scumm/util.h"
#ifdef USE_ARM_GFX_ASM
-extern "C" void asmDrawStripToScreen(int height, int width, byte const* text, byte const* src, byte* dst,
+extern "C" void asmDrawStripToScreen(int height, int width, void const* text, void const* src, byte* dst,
int vsPitch, int vmScreenWidth, int textSurfacePitch);
extern "C" void asmCopy8Col(byte* dst, int dstPitch, const byte* src, int height);
#endif /* USE_ARM_GFX_ASM */