aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/saga.h
diff options
context:
space:
mode:
authorMax Horn2008-09-01 20:19:28 +0000
committerMax Horn2008-09-01 20:19:28 +0000
commit2a06141644d06e06d0b9c851f3c120dcdd076c24 (patch)
treef0888f39be8f2ab7e80b38d891e588adf269a5b4 /engines/saga/saga.h
parent10a8cdee390698cdc38b1ca28077e39b29ef53f2 (diff)
parent852bc9dbb750b9995d31e70f4158c97d3758c46f (diff)
downloadscummvm-rg350-2a06141644d06e06d0b9c851f3c120dcdd076c24.tar.gz
scummvm-rg350-2a06141644d06e06d0b9c851f3c120dcdd076c24.tar.bz2
scummvm-rg350-2a06141644d06e06d0b9c851f3c120dcdd076c24.zip
Merging more of the GSoC 2008 RTL branch: SAGA
svn-id: r34252
Diffstat (limited to 'engines/saga/saga.h')
-rw-r--r--engines/saga/saga.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/saga/saga.h b/engines/saga/saga.h
index eeb8f7a61b..0b6b3b1478 100644
--- a/engines/saga/saga.h
+++ b/engines/saga/saga.h
@@ -492,7 +492,6 @@ protected:
public:
SagaEngine(OSystem *syst, const SAGAGameDescription *gameDesc);
virtual ~SagaEngine();
- void shutDown() { _quit = true; }
void save(const char *fileName, const char *saveName);
void load(const char *fileName);
@@ -513,6 +512,8 @@ public:
return isSaveListFull() ? _saveFilesCount : _saveFilesCount + 1;
}
+ virtual void syncSoundSettings();
+
int16 _framesEsc;
uint32 _globalFlags;
@@ -521,6 +522,7 @@ public:
int _soundVolume;
int _musicVolume;
+ int _speechVolume;
bool _subtitlesEnabled;
bool _voicesEnabled;
bool _voiceFilesExist;
@@ -611,8 +613,6 @@ public:
bool _rightMouseButtonPressed;
int _mouseClickCount;
- bool _quit;
-
//current game description
int _gameNumber;
const SAGAGameDescription *_gameDescription;