1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Apply review suggestions

This commit is contained in:
ζeh Matt
2021-11-24 19:03:41 +02:00
parent 213064e312
commit 860fb77da4

View File

@@ -153,7 +153,7 @@ EntityBase* GetEntity(size_t entityIndex)
{
return nullptr;
}
openrct2_assert(entityIndex < MAX_ENTITIES, "Tried getting sprite %u", entityIndex);
openrct2_assert(entityIndex < MAX_ENTITIES, "Tried getting entity %u", entityIndex);
return TryGetEntity(entityIndex);
}