mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-25 05:34:27 +00:00
type fix
svn-id: r43621
This commit is contained in:
parent
a790e4953c
commit
68fed4c62a
@ -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 {
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user