mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 15:48:48 +00:00
SCUMM: Get rid of the unused Resource::_globSize field
This commit is contained in:
parent
749a1beb35
commit
cf513e3ed6
@ -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() {
|
||||
|
@ -125,11 +125,6 @@ public:
|
||||
*/
|
||||
uint32 _roomoffs;
|
||||
|
||||
/**
|
||||
* Occurs in HE 70+, but we don't use it for anything.
|
||||
*/
|
||||
uint32 _globsize;
|
||||
|
||||
public:
|
||||
Resource();
|
||||
~Resource();
|
||||
|
Loading…
Reference in New Issue
Block a user