svn-id: r43621
This commit is contained in:
Andre Heider 2009-08-21 22:56:09 +00:00
parent a790e4953c
commit 68fed4c62a
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
#ifdef USE_ARM_GFX_ASM
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, uint8_t bitDepth);
extern "C" void asmCopy8Col(byte* dst, int dstPitch, const byte* src, int height, uint8 bitDepth);
#endif /* USE_ARM_GFX_ASM */
namespace Scumm {

View File

@ -117,7 +117,7 @@ end:
@ int dstPitch,
@ const byte *src,
@ int height,
@ int bitdepth);
@ uint8 bitdepth);
@
@ In addition, we assume that src and dst are both word (4 byte)
@ aligned. This is the same assumption that the old 'inline' version