diff options
author | 2011-01-31 16:36:16 +0000 | |
---|---|---|
committer | 2011-01-31 16:36:16 +0000 | |
commit | 6fa241b44506932a53d2e9988320f37fc8ba8b0c (patch) | |
tree | 80d45a8183bfc96bfb17214ea0b2b5b725fc402e /src/emu/distate.h | |
parent | 89f3e59251ad7e3404e9ed782eaa9600911f4777 (diff) |
Converted TMS3203X to a modern device.
Also removed redundant m_machine from the state and execute
interfaces to fix ambiguity when using m_machine from within
a device that inherits from these.
Diffstat (limited to 'src/emu/distate.h')
-rw-r--r-- | src/emu/distate.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/emu/distate.h b/src/emu/distate.h index 3328b66b947..2184678cef0 100644 --- a/src/emu/distate.h +++ b/src/emu/distate.h @@ -204,7 +204,6 @@ protected: static const int k_fast_state_max = 256; // lookups // state - running_machine & m_machine; // reference to owning machine const device_config_state_interface & m_state_config; // reference to configuration data simple_list<device_state_entry> m_state_list; // head of state list device_state_entry * m_fast_state[k_fast_state_max + 1 - k_fast_state_min]; |