diff options
author | 2016-02-21 11:48:45 +0100 | |
---|---|---|
committer | 2016-02-21 11:48:45 +0100 | |
commit | cc24a339d8c0517259084b5c178d784626ba965c (patch) | |
tree | 9868e9687b5802ae0a3733712a3bbeb3bc75c953 /src/emu/debug/debugvw.h | |
parent | b5daabda5495dea5c50e17961ecfed2ea8619d76 (diff) |
Merge remote-tracking branch 'refs/remotes/mamedev/master'
Second attempt
Diffstat (limited to 'src/emu/debug/debugvw.h')
-rw-r--r-- | src/emu/debug/debugvw.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/debug/debugvw.h b/src/emu/debug/debugvw.h index 437e68d68f6..ab4c986172e 100644 --- a/src/emu/debug/debugvw.h +++ b/src/emu/debug/debugvw.h @@ -124,14 +124,12 @@ public: const char *name() const { return m_name.c_str(); } debug_view_source *next() const { return m_next; } device_t *device() const { return m_device; } - bool is_octal() const { return m_is_octal; } private: // internal state debug_view_source * m_next; // link to next item std::string m_name; // name of the source item device_t * m_device; // associated device (if applicable) - bool m_is_octal; // is view in octal or hex }; |