diff options
| author | 2011-05-08 19:52:50 +0000 | |
|---|---|---|
| committer | 2011-05-08 19:52:50 +0000 | |
| commit | 787811844666f4058bb408e9fbf00efc304c8e48 (patch) | |
| tree | 3e393ead2773a45f963880594a48ebd64a332e27 /src/emu/driver.h | |
| parent | 2bb589beaf77f9ac14481cd2413bf610c97690f8 (diff) | |
Cleanups and version bumpmame0142u3
Diffstat (limited to 'src/emu/driver.h')
| -rw-r--r-- | src/emu/driver.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/driver.h b/src/emu/driver.h index 641833100cc..bdb3544309f 100644 --- a/src/emu/driver.h +++ b/src/emu/driver.h @@ -206,24 +206,24 @@ private: struct config_entry { friend class simple_list<config_entry>; - + public: // construction/destruction config_entry(machine_config &config, int index); ~config_entry(); - + // getters config_entry *next() const { return m_next; } int index() const { return m_index; } machine_config *config() const { return m_config; } - + private: // internal state config_entry * m_next; machine_config * m_config; int m_index; }; - + static const int CONFIG_CACHE_COUNT = 100; // internal state |
