Re-named variable.

svn-id: r18798
This commit is contained in:
Torbjörn Andersson 2005-09-09 10:40:49 +00:00
parent 6f7c29fe9b
commit d0467607ba
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -482,7 +482,7 @@ struct GameDescription {
GameSoundInfo *voiceInfo;
GameSoundInfo *sfxInfo;
GameSoundInfo *musicInfo;
int patchsCount;
int patchesCount;
GamePatchDescription *patchDescriptions;
uint32 features;