diff options
Diffstat (limited to 'scumm/bomp.h')
| -rw-r--r-- | scumm/bomp.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/bomp.h b/scumm/bomp.h index 386698bbab..d2c224ea29 100644 --- a/scumm/bomp.h +++ b/scumm/bomp.h @@ -22,6 +22,8 @@  #ifndef BOMP_H  #define BOMP_H +namespace Scumm { +  int32 setupBompScale(byte *scaling, int32 size, byte scale);  void bompApplyMask(byte *line_buffer, byte *mask, byte maskbit, int32 size, byte transparency); @@ -31,4 +33,6 @@ void decompressBomp(byte *dst, const byte *src, int w, int h);  void bompDecodeLine(byte *dst, const byte *src, int size);  void bompDecodeLineReverse(byte *dst, const byte *src, int size); +} // End of namespace Scumm +  #endif  | 
