SCUMM: Get rid of the unused Resource::_globSize field

This commit is contained in:
Max Horn 2011-05-13 14:40:45 +02:00
parent 749a1beb35
commit cf513e3ed6
2 changed files with 2 additions and 7 deletions

View File

@ -520,7 +520,8 @@ int ScummEngine_v70he::readResTypeList(ResType type) {
}
for (idx = 0; idx < num; idx++) {
_res->_types[type]._resources[idx]._globsize = _fileHandle->readUint32LE();
// The globsize is currently not being used
/*_res->_types[type]._resources[idx]._globsize =*/ _fileHandle->readUint32LE();
}
return num;
@ -841,7 +842,6 @@ ResourceManager::Resource::Resource() {
_status = 0;
_roomno = 0;
_roomoffs = 0;
_globsize = 0;
}
ResourceManager::Resource::~Resource() {

View File

@ -125,11 +125,6 @@ public:
*/
uint32 _roomoffs;
/**
* Occurs in HE 70+, but we don't use it for anything.
*/
uint32 _globsize;
public:
Resource();
~Resource();