summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvil Eye <malusluminis@hotmail.com>2022-01-04 17:11:55 +0100
committerEvil Eye <malusluminis@hotmail.com>2022-01-04 17:11:55 +0100
commit5a7a3a0d2d330af4665b49945a17178ebc8e644c (patch)
tree06b4d377bd97afc7ec2d24a142ddd75a9dd96fb2
parentd482766fe2baa13e88ddfc2b71934ba7a9d4f811 (diff)
Silence a signed/unsigned mismatch warning
-rw-r--r--components/esm/defs.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/esm/defs.hpp b/components/esm/defs.hpp
index e793c6fea7..f87a67405b 100644
--- a/components/esm/defs.hpp
+++ b/components/esm/defs.hpp
@@ -96,7 +96,7 @@ struct FourCC
static constexpr unsigned int value = (((((d << 8) | c) << 8) | b) << 8) | a;
};
-enum RecNameInts
+enum RecNameInts : unsigned int
{
// format 0 / legacy
REC_ACTI = FourCC<'A','C','T','I'>::value,