aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/image/b25sloader.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-23 08:40:39 +0000
committerEugene Sandulenko2010-10-12 23:17:19 +0000
commite381bc3c148d2a45e903e71538be393e99143fd2 (patch)
tree092daecebfaa6c16ffaeab215adcd09c2278e28e /engines/sword25/gfx/image/b25sloader.h
parenta6d909c07f8a99e826f4a102111736e8198a5925 (diff)
downloadscummvm-rg350-e381bc3c148d2a45e903e71538be393e99143fd2.tar.gz
scummvm-rg350-e381bc3c148d2a45e903e71538be393e99143fd2.tar.bz2
scummvm-rg350-e381bc3c148d2a45e903e71538be393e99143fd2.zip
SWORD25: char * -> byte * in image-related operations
svn-id: r53287
Diffstat (limited to 'engines/sword25/gfx/image/b25sloader.h')
-rw-r--r--engines/sword25/gfx/image/b25sloader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sword25/gfx/image/b25sloader.h b/engines/sword25/gfx/image/b25sloader.h
index aacac55ddd..922b348021 100644
--- a/engines/sword25/gfx/image/b25sloader.h
+++ b/engines/sword25/gfx/image/b25sloader.h
@@ -57,10 +57,10 @@ public:
}
protected:
- virtual bool IsCorrectImageFormat(const char *FileDataPtr, unsigned int FileSize);
- virtual bool DecodeImage(const char *FileDataPtr, unsigned int FileSize, GraphicEngine::COLOR_FORMATS ColorFormat, byte *&UncompressedDataPtr,
+ virtual bool IsCorrectImageFormat(const byte *FileDataPtr, unsigned int FileSize);
+ virtual bool DecodeImage(const byte *FileDataPtr, unsigned int FileSize, GraphicEngine::COLOR_FORMATS ColorFormat, byte *&UncompressedDataPtr,
int &Width, int &Height, int &Pitch);
- virtual bool ImageProperties(const char *FileDataPtr, unsigned int FileSize, GraphicEngine::COLOR_FORMATS &ColorFormat, int &Width, int &Height);
+ virtual bool ImageProperties(const byte *FileDataPtr, unsigned int FileSize, GraphicEngine::COLOR_FORMATS &ColorFormat, int &Width, int &Height);
};