mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-15 00:27:31 +00:00
GOB: fixed missing member initialization
This commit is contained in:
parent
360e1e97c9
commit
32c8ea021c
@ -98,7 +98,10 @@ Common::SeekableReadStream *TextItem::stream() const {
|
||||
|
||||
|
||||
Resources::TOTResourceTable::TOTResourceTable() {
|
||||
items = 0;
|
||||
itemsCount = 0;
|
||||
unknown = (byte)0;
|
||||
items = NULL;
|
||||
dataOffset = 0u;
|
||||
}
|
||||
|
||||
Resources::TOTResourceTable::~TOTResourceTable() {
|
||||
@ -118,9 +121,11 @@ Resources::EXTResourceTable::~EXTResourceTable() {
|
||||
|
||||
|
||||
Resources::TOTTextTable::TOTTextTable() {
|
||||
items = 0;
|
||||
data = 0;
|
||||
needFree = false;
|
||||
needFree = false;
|
||||
itemsCount = 0;
|
||||
data = (byte)0;
|
||||
size = 0;
|
||||
items = NULL;
|
||||
}
|
||||
|
||||
Resources::TOTTextTable::~TOTTextTable() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user