1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Return image and string table by reference

This commit is contained in:
Ted John
2017-12-11 13:06:59 +00:00
committed by Gymnasiast
parent c3f075d18c
commit ec446ac9d6
16 changed files with 95 additions and 86 deletions

View File

@@ -71,7 +71,7 @@ std::string Object::GetString(uint8 index) const
auto sz = GetOverrideString(index);
if (sz.empty())
{
sz = GetStringTable()->GetString(index);
sz = GetStringTable().GetString(index);
}
return sz;
}