From 5468cb6f3a7d3a81d4b0b96fd45873be355b433d Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Thu, 18 Jul 2019 11:53:39 +0700 Subject: 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 --- src/mame/machine/vino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit v1.2.3