mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
Merge pull request #17249 from janisozaur/fix-scenery-name-reporting
Fix possible crash when reporting scenery name in S4 import
This commit is contained in:
@@ -718,7 +718,8 @@ namespace RCT1
|
||||
if (_sceneryGroupEntries.GetCount() >= MAX_SCENERY_GROUP_OBJECTS)
|
||||
{
|
||||
Console::WriteLine("Warning: More than %d (max scenery groups) in RCT1 park.", MAX_SCENERY_GROUP_OBJECTS);
|
||||
Console::WriteLine(" [%s] scenery group not added.", entryName);
|
||||
std::string entryNameString = std::string(entryName);
|
||||
Console::WriteLine(" [%s] scenery group not added.", entryNameString.c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user