SAGA: Removed patchesCount from SAGAGameDescription

svn-id: r34693
This commit is contained in:
Max Horn 2008-09-30 09:08:17 +00:00
parent 66c481c70a
commit 82f7b3e6e4
3 changed files with 6 additions and 32 deletions

View file

@ -50,7 +50,6 @@ struct SAGAGameDescription {
const GameFontDescription *fontDescriptions;
const GameSoundInfo *voiceInfo;
const GameSoundInfo *sfxInfo;
int patchesCount;
const GamePatchDescription *patchDescriptions;
};
@ -95,7 +94,6 @@ Common::Platform SagaEngine::getPlatform() const { return _gameDescription->desc
int SagaEngine::getGameNumber() const { return _gameNumber; }
int SagaEngine::getStartSceneNumber() const { return _gameDescription->startSceneNumber; }
int SagaEngine::getPatchesCount() const { return _gameDescription->patchesCount; }
const GamePatchDescription *SagaEngine::getPatchDescriptions() const { return _gameDescription->patchDescriptions; }
const Common::ADGameFileDescription *SagaEngine::getFilesDescriptions() const { return _gameDescription->desc.filesDescriptions; }