aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-09-09 10:40:49 +0000
committerTorbjörn Andersson2005-09-09 10:40:49 +0000
commitd0467607ba072f355d730d75dc115c8d69d5bf9b (patch)
tree42b1a635365af3d2597d740e29478fddaf7b3ca2
parent6f7c29fe9bca917df8af70f373851d61bc99a7c4 (diff)
downloadscummvm-rg350-d0467607ba072f355d730d75dc115c8d69d5bf9b.tar.gz
scummvm-rg350-d0467607ba072f355d730d75dc115c8d69d5bf9b.tar.bz2
scummvm-rg350-d0467607ba072f355d730d75dc115c8d69d5bf9b.zip
Re-named variable.
svn-id: r18798
-rw-r--r--saga/rscfile.cpp2
-rw-r--r--saga/saga.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/saga/rscfile.cpp b/saga/rscfile.cpp
index 7a328c8158..1f5b3e9725 100644
--- a/saga/rscfile.cpp
+++ b/saga/rscfile.cpp
@@ -312,7 +312,7 @@ bool Resource::loadContext(ResourceContext *context) {
}
//process external patch files
- for (j = 0; j < _vm->getGameDescription()->patchsCount; j++) {
+ for (j = 0; j < _vm->getGameDescription()->patchesCount; j++) {
patchDescription = &_vm->getGameDescription()->patchDescriptions[j];
if ((patchDescription->fileType & context->fileType) != 0) {
if (patchDescription->resourceId < context->count) {
diff --git a/saga/saga.h b/saga/saga.h
index 603ccff171..8839b3c65e 100644
--- a/saga/saga.h
+++ b/saga/saga.h
@@ -482,7 +482,7 @@ struct GameDescription {
GameSoundInfo *voiceInfo;
GameSoundInfo *sfxInfo;
GameSoundInfo *musicInfo;
- int patchsCount;
+ int patchesCount;
GamePatchDescription *patchDescriptions;
uint32 features;