mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Fix #13574: Object selection crashes if 'originalId' missing
This commit is contained in:
committed by
GitHub
parent
8bab0c7479
commit
90964b38bb
@@ -450,6 +450,8 @@ namespace ObjectFactory
|
||||
originalName = originalId.substr(9, 8);
|
||||
entry.checksum = std::stoul(originalId.substr(18, 8), nullptr, 16);
|
||||
}
|
||||
// Always set, since originalId might be missing or incorrect.
|
||||
entry.SetType(objectType);
|
||||
auto minLength = std::min<size_t>(8, originalName.length());
|
||||
std::memcpy(entry.name, originalName.c_str(), minLength);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user