mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
machine/ncr5380n.cpp: Use explicitly sized storage type for enum registered for save state
This commit is contained in:
parent
f994689727
commit
e96932a60b
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ private:
|
|||
|
||||
// state machine
|
||||
emu_timer *m_state_timer;
|
||||
enum state : unsigned
|
||||
enum state : uint32_t
|
||||
{
|
||||
IDLE,
|
||||
|
||||
|
|
Loading…
Reference in a new issue