From 422d5f2ef1f20de285ccc485b5c5aaea3168edab Mon Sep 17 00:00:00 2001 From: Tom Lankhorst Date: Fri, 1 Feb 2019 21:54:00 +0100 Subject: [PATCH] Replace '_N' by '_num' --- src/openrct2/core/Random.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/core/Random.hpp b/src/openrct2/core/Random.hpp index 2ba0da05fa..daab3291cf 100644 --- a/src/openrct2/core/Random.hpp +++ b/src/openrct2/core/Random.hpp @@ -27,12 +27,12 @@ namespace Random /** * FixedSeedSequence adheres to the _Named Requirement_ `SeedSequence`. */ - template class FixedSeedSequence + template class FixedSeedSequence { public: using result_type = uint32_t; - static constexpr size_t N = _N; + static constexpr size_t N = _num; static constexpr result_type default_seed = 0x1234567F; explicit FixedSeedSequence()