mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 18:24:59 +00:00
PEGASUS: Remove some useless const modifiers
Thanks to digitall for spotting
This commit is contained in:
parent
851c010feb
commit
73f2244a56
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user