aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
diff options
context:
space:
mode:
authorMax Horn2006-04-01 21:31:27 +0000
committerMax Horn2006-04-01 21:31:27 +0000
commit8f691e51fa83b4f2dd74b2b429977691994a9f4e (patch)
tree5435cd0b33484e8f555bed4df204aa642fc0bba3 /engines/cine
parent49d63590ab3878486ebb91bd201b4e5a0edc6431 (diff)
downloadscummvm-rg350-8f691e51fa83b4f2dd74b2b429977691994a9f4e.tar.gz
scummvm-rg350-8f691e51fa83b4f2dd74b2b429977691994a9f4e.tar.bz2
scummvm-rg350-8f691e51fa83b4f2dd74b2b429977691994a9f4e.zip
Removed superfluous addDefaultDirectory call, as well as two unused bad member vars
svn-id: r21532
Diffstat (limited to 'engines/cine')
-rw-r--r--engines/cine/cine.cpp5
-rw-r--r--engines/cine/cine.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/engines/cine/cine.cpp b/engines/cine/cine.cpp
index e7b0348ec4..643f40667d 100644
--- a/engines/cine/cine.cpp
+++ b/engines/cine/cine.cpp
@@ -134,11 +134,6 @@ CineEngine::CineEngine(GameDetector *detector, OSystem *syst) : Engine(syst) {
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume"));
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, ConfMan.getInt("music_volume"));
- _dataPath = getGameDataPath();
- _savePath = _saveFileMan->getSavePath();
-
- Common::File::addDefaultDirectory(_gameDataPath);
-
const CINEGameSettings *g;
for (g = cine_settings; g->name; ++g)
diff --git a/engines/cine/cine.h b/engines/cine/cine.h
index 611350cbb0..1b797f059c 100644
--- a/engines/cine/cine.h
+++ b/engines/cine/cine.h
@@ -60,9 +60,6 @@ protected:
int go();
void shutdown();
- const char *_dataPath;
- const char *_savePath;
-
public:
CineEngine(GameDetector *detector, OSystem *syst);
virtual ~CineEngine();