From 860fb77da4daf4b1c3ae59769ee2c0bc02349efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <5415177+ZehMatt@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:03:41 +0200 Subject: [PATCH] Apply review suggestions --- src/openrct2/entity/EntityRegistry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/entity/EntityRegistry.cpp b/src/openrct2/entity/EntityRegistry.cpp index a020a56b40..a1f48a6c17 100644 --- a/src/openrct2/entity/EntityRegistry.cpp +++ b/src/openrct2/entity/EntityRegistry.cpp @@ -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); }