aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-18 15:40:45 +0300
committerEugene Sandulenko2013-09-06 14:48:19 +0300
commit4554ac24c6c47645528f68dbed84ccfa93b62a15 (patch)
tree87db50249d12051e27169ecc9f4ad80f89c95310 /engines/fullpipe/gfx.h
parentba93c8d0842f4b786e6bea2725cfd03e0e132d4c (diff)
downloadscummvm-rg350-4554ac24c6c47645528f68dbed84ccfa93b62a15.tar.gz
scummvm-rg350-4554ac24c6c47645528f68dbed84ccfa93b62a15.tar.bz2
scummvm-rg350-4554ac24c6c47645528f68dbed84ccfa93b62a15.zip
FULLPIPE: Fixed to RB bitmap rendering
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index 13f519478a..05ec2d9049 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -42,12 +42,12 @@ struct Bitmap {
int _flags;
void load(Common::ReadStream *s);
- void putDib(int x, int y, byte *palette);
+ void putDib(int x, int y, int32 *palette);
- void colorFill(int16 *dest, int len, int color);
- void paletteFill(int16 *dest, byte *src, int len, int32 *palette);
- void copierKeyColor(int16 *dest, byte *src, int len, int keyColor, int32 *palette, bool cb05_format);
- void copier(int16 *dest, byte *src, int len, int32 *palette, bool cb05_format);
+ void colorFill(uint16 *dest, int len, int color);
+ void paletteFill(uint16 *dest, byte *src, int len, int32 *palette);
+ void copierKeyColor(uint16 *dest, byte *src, int len, int keyColor, int32 *palette, bool cb05_format);
+ void copier(uint16 *dest, byte *src, int len, int32 *palette, bool cb05_format);
};
class Picture : public MemoryObject {