diff options
author | Matthew Hoops | 2012-04-02 19:58:50 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-04-02 19:58:50 -0400 |
commit | 73f2244a562fe0498720546e57452377752741fb (patch) | |
tree | d7a4c9a05680c642e61c6413bc1ce702b1b6435a /engines/pegasus | |
parent | 851c010feb746680d49b2caa81250bee12c0aeb0 (diff) | |
download | scummvm-rg350-73f2244a562fe0498720546e57452377752741fb.tar.gz scummvm-rg350-73f2244a562fe0498720546e57452377752741fb.tar.bz2 scummvm-rg350-73f2244a562fe0498720546e57452377752741fb.zip |
PEGASUS: Remove some useless const modifiers
Thanks to digitall for spotting
Diffstat (limited to 'engines/pegasus')
-rwxr-xr-x | engines/pegasus/neighborhood/door.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/exit.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/extra.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/hotspotinfo.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/spot.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/turn.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/view.h | 2 | ||||
-rwxr-xr-x | engines/pegasus/neighborhood/zoom.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/engines/pegasus/neighborhood/door.h b/engines/pegasus/neighborhood/door.h index cd2af1328a..8ea757559a 100755 --- a/engines/pegasus/neighborhood/door.h +++ b/engines/pegasus/neighborhood/door.h @@ -53,7 +53,7 @@ public: DoorTable() {} ~DoorTable() {} - static const uint32 getResTag() { return MKTAG('D', 'o', 'o', 'r'); } + static uint32 getResTag() { return MKTAG('D', 'o', 'o', 'r'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/exit.h b/engines/pegasus/neighborhood/exit.h index baa3381f11..17150892f9 100755 --- a/engines/pegasus/neighborhood/exit.h +++ b/engines/pegasus/neighborhood/exit.h @@ -42,7 +42,7 @@ public: ExitTable() {} ~ExitTable() {} - static const uint32 getResTag() { return MKTAG('E', 'x', 'i', 't'); } + static uint32 getResTag() { return MKTAG('E', 'x', 'i', 't'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/extra.h b/engines/pegasus/neighborhood/extra.h index 9ac858e352..14fcff1009 100755 --- a/engines/pegasus/neighborhood/extra.h +++ b/engines/pegasus/neighborhood/extra.h @@ -42,7 +42,7 @@ public: ExtraTable() {} ~ExtraTable() {} - static const uint32 getResTag() { return MKTAG('X', 't', 'r', 'a'); } + static uint32 getResTag() { return MKTAG('X', 't', 'r', 'a'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/hotspotinfo.h b/engines/pegasus/neighborhood/hotspotinfo.h index 26382718ec..965f445ba8 100755 --- a/engines/pegasus/neighborhood/hotspotinfo.h +++ b/engines/pegasus/neighborhood/hotspotinfo.h @@ -42,7 +42,7 @@ public: HotspotInfoTable() {} ~HotspotInfoTable() {} - static const uint32 getResTag() { return MKTAG('H', 'S', 'I', 'n'); } + static uint32 getResTag() { return MKTAG('H', 'S', 'I', 'n'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/spot.h b/engines/pegasus/neighborhood/spot.h index 4be0864c2a..a985420b7c 100755 --- a/engines/pegasus/neighborhood/spot.h +++ b/engines/pegasus/neighborhood/spot.h @@ -59,7 +59,7 @@ public: SpotTable() {} ~SpotTable() {} - static const uint32 getResTag() { return MKTAG('S', 'p', 'o', 't'); } + static uint32 getResTag() { return MKTAG('S', 'p', 'o', 't'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/turn.h b/engines/pegasus/neighborhood/turn.h index acf770a297..329b03eddb 100755 --- a/engines/pegasus/neighborhood/turn.h +++ b/engines/pegasus/neighborhood/turn.h @@ -42,7 +42,7 @@ public: TurnTable() {} ~TurnTable() {} - static const uint32 getResTag() { return MKTAG('T', 'u', 'r', 'n'); } + static uint32 getResTag() { return MKTAG('T', 'u', 'r', 'n'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/view.h b/engines/pegasus/neighborhood/view.h index 1c57351671..3397508b61 100755 --- a/engines/pegasus/neighborhood/view.h +++ b/engines/pegasus/neighborhood/view.h @@ -42,7 +42,7 @@ public: ViewTable() {} ~ViewTable() {} - static const uint32 getResTag() { return MKTAG('V', 'i', 'e', 'w'); } + static uint32 getResTag() { return MKTAG('V', 'i', 'e', 'w'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); diff --git a/engines/pegasus/neighborhood/zoom.h b/engines/pegasus/neighborhood/zoom.h index f822bb719c..8bcf8974f8 100755 --- a/engines/pegasus/neighborhood/zoom.h +++ b/engines/pegasus/neighborhood/zoom.h @@ -42,7 +42,7 @@ public: ZoomTable() {} ~ZoomTable() {} - static const uint32 getResTag() { return MKTAG('Z', 'o', 'o', 'm'); } + static uint32 getResTag() { return MKTAG('Z', 'o', 'o', 'm'); } void loadFromStream(Common::SeekableReadStream *stream); void clear(); |