diff options
author | 2019-07-18 11:53:39 +0700 | |
---|---|---|
committer | 2019-07-18 11:53:39 +0700 | |
commit | 5468cb6f3a7d3a81d4b0b96fd45873be355b433d (patch) | |
tree | 5c3a4705e34c9c655550751fcd53ea316314a3ec | |
parent | 23b49d88afac452d54481005684820efed211cc1 (diff) |
vino: another msvc bug (nw)
MSVC produces "Warning C4309 'initializing': truncation of constant value"
Previously reported here: https://developercommunity.visualstudio.com/content/problem/490264/standard-violation-enum-underlying-type-cannot-rep.html
-rw-r--r-- | src/mame/machine/vino.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/vino.h b/src/mame/machine/vino.h index d7b5b6ada8f..446664e626f 100644 --- a/src/mame/machine/vino.h +++ b/src/mame/machine/vino.h @@ -34,7 +34,7 @@ private: CHAN_COUNT }; - enum + enum : u64 { CTRL_MASK = 0x7fffffff, |