aboutsummaryrefslogtreecommitdiff
path: root/queen/resource.h
diff options
context:
space:
mode:
authorGregory Montoir2003-12-26 15:36:28 +0000
committerGregory Montoir2003-12-26 15:36:28 +0000
commit749b5d4ca52c4af402dab8727f752234ff9396b7 (patch)
treec17381727113e52a3140e29314eb1158888558e7 /queen/resource.h
parent5da05a84cb7b56233bfeb663a48d2b2515999752 (diff)
downloadscummvm-rg350-749b5d4ca52c4af402dab8727f752234ff9396b7.tar.gz
scummvm-rg350-749b5d4ca52c4af402dab8727f752234ff9396b7.tar.bz2
scummvm-rg350-749b5d4ca52c4af402dab8727f752234ff9396b7.zip
cleanup
svn-id: r11946
Diffstat (limited to 'queen/resource.h')
-rw-r--r--queen/resource.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/queen/resource.h b/queen/resource.h
index c02033b808..c520b25c0f 100644
--- a/queen/resource.h
+++ b/queen/resource.h
@@ -53,7 +53,6 @@ struct ResourceEntry {
struct GameVersion {
char versionString[6];
- bool isFloppy;
bool isDemo;
uint32 tableOffset;
uint32 dataFileSize;
@@ -69,19 +68,20 @@ public:
uint8 *loadFileMalloc(const char *filename, uint32 skipBytes = 0, byte *dstBuf = NULL);
char *getJAS2Line();
bool exists(const char *filename);
- bool isDemo();
- bool isFloppy();
+ bool isDemo() const;
+ bool isFloppy() const;
uint8 compression() { return _compression; }
uint32 fileSize(const char *filename);
uint32 fileOffset(const char *filename);
File *giveCompressedSound(const char *filename);
- Language getLanguage();
+ Language getLanguage() const;
const char *JASVersion();
bool writeSave(uint16 slot, const byte *saveData, uint32 size);
bool readSave(uint16 slot, byte *&ptr);
enum {
- DEMO_JAS_VERSION_OFFSET = 0x119A8,
+ JAS_VERSION_OFFSET_DEMO = 0x119A8,
+ JAS_VERSION_OFFSET_INTV = 0xCF8,
JAS_VERSION_OFFSET = 0x12484
};