mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 03:10:22 +00:00
ENGINES: Fix MSVC C4309 enum sign warning
This commit is contained in:
parent
de88d24ef3
commit
97137c29f5
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user