mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-31 15:06:39 +00:00
Silence a signed/unsigned mismatch warning
This commit is contained in:
parent
d482766fe2
commit
5a7a3a0d2d
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue