aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/hires1.h
diff options
context:
space:
mode:
authorWalter van Niftrik2016-03-06 16:43:30 +0100
committerWalter van Niftrik2016-03-09 10:03:13 +0100
commit0ec3ab142244cbaf24f0f6c97a931d0d073d4f97 (patch)
tree5e18782be888e2dd2a91b942009f3edaebb57d8a /engines/adl/hires1.h
parenta73dcdf224ae88c7bcf73d754781052835af4cd0 (diff)
downloadscummvm-rg350-0ec3ab142244cbaf24f0f6c97a931d0d073d4f97.tar.gz
scummvm-rg350-0ec3ab142244cbaf24f0f6c97a931d0d073d4f97.tar.bz2
scummvm-rg350-0ec3ab142244cbaf24f0f6c97a931d0d073d4f97.zip
ADL: Fix const'ness
Diffstat (limited to 'engines/adl/hires1.h')
-rw-r--r--engines/adl/hires1.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/adl/hires1.h b/engines/adl/hires1.h
index f72093a92a..7446e10394 100644
--- a/engines/adl/hires1.h
+++ b/engines/adl/hires1.h
@@ -39,15 +39,15 @@ public:
private:
void restartGame();
void printMessage(uint idx, bool wait = true);
- uint getEngineMessage(EngineMessage msg);
+ uint getEngineMessage(EngineMessage msg) const;
void initState();
void runIntro();
void loadData();
- void drawPic(Common::ReadStream &stream, const Common::Point &pos);
+ void drawPic(Common::ReadStream &stream, const Common::Point &pos) const;
void drawItems();
- void drawLine(const Common::Point &p1, const Common::Point &p2, byte color);
- void drawPic(byte pic, Common::Point pos);
+ void drawLine(const Common::Point &p1, const Common::Point &p2, byte color) const;
+ void drawPic(byte pic, Common::Point pos) const;
};
} // End of namespace Adl