From e0fe768f208ad589a6eab36863e55c90770246c9 Mon Sep 17 00:00:00 2001 From: FalloutCascadia <54562300+FalloutCascadia@users.noreply.github.com> Date: Fri, 14 Jun 2024 07:57:29 +0200 Subject: [PATCH] Update BSRandom.h to use std::uint32_t --- CommonLibF4/include/RE/Bethesda/BSRandom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonLibF4/include/RE/Bethesda/BSRandom.h b/CommonLibF4/include/RE/Bethesda/BSRandom.h index 8c7e1e6b..fd61f532 100644 --- a/CommonLibF4/include/RE/Bethesda/BSRandom.h +++ b/CommonLibF4/include/RE/Bethesda/BSRandom.h @@ -4,7 +4,7 @@ namespace RE { namespace BSRandom { - inline std::uint32_t UnsignedInt(unsigned int aMin, unsigned int aMax) + inline std::uint32_t UnsignedInt(std::uint32_t aMin, std::uint32_t aMax) { using func_t = decltype(&BSRandom::UnsignedInt); static REL::Relocation func{ REL::ID(2267950) };