1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-09 13:13:34 +00:00

Silence a signed/unsigned mismatch warning

This commit is contained in:
Evil Eye 2022-01-04 17:11:55 +01:00
parent d482766fe2
commit 5a7a3a0d2d

View File

@ -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,