From 892f05f046e73366069baa77649054f8e8aed5f3 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sat, 5 Oct 2024 11:03:44 +0200 Subject: [PATCH] Make both QuarterTile constructors constexpr --- src/openrct2/world/QuarterTile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/world/QuarterTile.h b/src/openrct2/world/QuarterTile.h index 0b70ad0caa..11cf0e8fae 100644 --- a/src/openrct2/world/QuarterTile.h +++ b/src/openrct2/world/QuarterTile.h @@ -22,7 +22,7 @@ public: { } - QuarterTile(uint8_t tileAndZQuarter) + constexpr QuarterTile(uint8_t tileAndZQuarter) : _val(tileAndZQuarter) { }