aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/saga.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-12-29 17:30:29 +0000
committerFilippos Karapetis2008-12-29 17:30:29 +0000
commit9a5f45a40c433cce2965eb4fc567296fb32ab6cc (patch)
treee970bba683f1ebd7e73088fba48a14ed6a06bf5a /engines/saga/saga.h
parent842af1ee4aa355da0b99daeb82b6ea9b2eb4d698 (diff)
downloadscummvm-rg350-9a5f45a40c433cce2965eb4fc567296fb32ab6cc.tar.gz
scummvm-rg350-9a5f45a40c433cce2965eb4fc567296fb32ab6cc.tar.bz2
scummvm-rg350-9a5f45a40c433cce2965eb4fc567296fb32ab6cc.zip
- IHNM Mac loads correctly again
- Removed isBigEndian from GameSoundInfo - Removed GF_BIG_ENDIAN_DATA - Stopped loading the options panel for non-interactive ITE demos (it doesn't exist) - Fixed crash when exiting from non-interactive ITE demos svn-id: r35615
Diffstat (limited to 'engines/saga/saga.h')
-rw-r--r--engines/saga/saga.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/engines/saga/saga.h b/engines/saga/saga.h
index 0dce9df3cc..b06dd94833 100644
--- a/engines/saga/saga.h
+++ b/engines/saga/saga.h
@@ -116,16 +116,15 @@ enum GameFileTypes {
};
enum GameFeatures {
- GF_BIG_ENDIAN_DATA = 1 << 0,
- GF_WYRMKEEP = 1 << 1,
- GF_ITE_FLOPPY = 1 << 2,
- GF_SCENE_SUBSTITUTES = 1 << 3,
- GF_COMPRESSED_SOUNDS = 1 << 4,
- GF_NON_INTERACTIVE = 1 << 5,
- GF_OLD_ITE_DOS = 1 << 6,
- GF_MONO_MUSIC = 1 << 7,
- GF_EXTRA_ITE_CREDITS = 1 << 8,
- GF_IHNM_DEMO = 1 << 9
+ GF_WYRMKEEP = 1 << 0,
+ GF_ITE_FLOPPY = 1 << 1,
+ GF_SCENE_SUBSTITUTES = 1 << 2,
+ GF_COMPRESSED_SOUNDS = 1 << 3,
+ GF_NON_INTERACTIVE = 1 << 4,
+ GF_OLD_ITE_DOS = 1 << 5,
+ GF_MONO_MUSIC = 1 << 6,
+ GF_EXTRA_ITE_CREDITS = 1 << 7,
+ GF_IHNM_DEMO = 1 << 8
};
enum VerbTypeIds {
@@ -293,7 +292,6 @@ struct GameDisplayInfo;
struct GameSoundInfo {
GameSoundTypes resourceType;
int sampleBits;
- bool isBigEndian;
bool isSigned;
};