From 86f63e16119b8df4d71b9a8118148badc869dce3 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek <1478678+Gymnasiast@users.noreply.github.com> Date: Tue, 22 Oct 2024 23:01:28 +0200 Subject: [PATCH] Fix typo --- src/openrct2-ui/windows/StaffFirePrompt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/windows/StaffFirePrompt.cpp b/src/openrct2-ui/windows/StaffFirePrompt.cpp index 32f1620c7453..28c4528ee73c 100644 --- a/src/openrct2-ui/windows/StaffFirePrompt.cpp +++ b/src/openrct2-ui/windows/StaffFirePrompt.cpp @@ -79,7 +79,7 @@ namespace OpenRCT2::Ui::Windows Peep* peep = GetEntity(EntityId::FromUnderlying(number)); // The staff member may have been fired in the meantime. - if (peep == nulltr) + if (peep == nullptr) { return; }