1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-31 10:45:16 +01:00

handle empty string tables

This commit is contained in:
Ted John
2016-06-26 21:43:30 +01:00
parent 1af6242381
commit a0d8b9ccbf
12 changed files with 76 additions and 61 deletions

View File

@@ -35,8 +35,8 @@ private:
ImageTable _imageTable;
protected:
StringTable GetStringTable() { return _stringTable; }
ImageTable GetImageTable() { return _imageTable; }
StringTable * GetStringTable() { return &_stringTable; }
ImageTable * GetImageTable() { return &_imageTable; }
public:
explicit Object(const rct_object_entry &entry);