aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/mhwanh.h
diff options
context:
space:
mode:
authorlukaslw2014-08-01 17:38:04 +0200
committerlukaslw2014-08-01 17:38:04 +0200
commit3c29d61f6705a6f05d86fa2599a6992d2d17e3ac (patch)
tree9c0033d66c9a1cbf1cb5c52ca27b8159d194d432 /engines/prince/mhwanh.h
parentb3589c76da856239828377a3011525a888b04920 (diff)
downloadscummvm-rg350-3c29d61f6705a6f05d86fa2599a6992d2d17e3ac.tar.gz
scummvm-rg350-3c29d61f6705a6f05d86fa2599a6992d2d17e3ac.tar.bz2
scummvm-rg350-3c29d61f6705a6f05d86fa2599a6992d2d17e3ac.zip
PRINCE: Code clean-up
Diffstat (limited to 'engines/prince/mhwanh.h')
-rw-r--r--engines/prince/mhwanh.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/prince/mhwanh.h b/engines/prince/mhwanh.h
index 02256569ce..cfa14630b7 100644
--- a/engines/prince/mhwanh.h
+++ b/engines/prince/mhwanh.h
@@ -25,7 +25,9 @@
#include "image/image_decoder.h"
#include "image/bmp.h"
+
#include "graphics/surface.h"
+
#include "resource.h"
namespace Prince {
@@ -40,12 +42,12 @@ public:
virtual bool loadStream(Common::SeekableReadStream &stream);
virtual Graphics::Surface *getSurface() const { return _surface; }
virtual const byte *getPalette() const { return _palette; }
- uint16 getPaletteCount() const { return _paletteColorCount; }
+ uint16 getPaletteCount() const { return kPaletteColorCount; }
+ static const uint16 kPaletteColorCount = 256;
private:
Graphics::Surface *_surface;
byte *_palette;
- uint16 _paletteColorCount;
};
namespace Resource {
@@ -60,8 +62,6 @@ namespace Resource {
}
}
-}
+} // End of namespace Prince
#endif
-
-/* vim: set tabstop=4 noexpandtab: */