ENGINES: Fix MSVC C4309 enum sign warning

This commit is contained in:
Donovan Watteau 2022-11-26 16:01:45 +01:00 committed by Eugene Sandulenko
parent de88d24ef3
commit 97137c29f5

View File

@ -89,7 +89,7 @@ struct ADGameFileDescription {
*
* Note that the lowest 16 bits are currently reserved for use by the client code.
*/
enum ADGameFlags {
enum ADGameFlags : uint {
ADGF_NO_FLAGS = 0u, ///< No flags.
ADGF_TAILMD5 = (1u << 16), ///< Calculate the MD5 for this entry from the end of the file.
ADGF_AUTOGENTARGET = (1u << 17), ///< Automatically generate gameid from @ref ADGameDescription::extra.