summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/dvstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/dvstate.h')
-rw-r--r--src/emu/debug/dvstate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/debug/dvstate.h b/src/emu/debug/dvstate.h
index b30c973728c..406ce2c35c6 100644
--- a/src/emu/debug/dvstate.h
+++ b/src/emu/debug/dvstate.h
@@ -51,7 +51,7 @@
class debug_view_state_source : public debug_view_source
{
friend class debug_view_state;
-
+
// construction/destruction
debug_view_state_source(const char *name, device_t &device);
@@ -76,7 +76,7 @@ class debug_view_state : public debug_view
// construction/destruction
debug_view_state(running_machine &machine, debug_view_osd_update_func osdupdate, void *osdprivate);
virtual ~debug_view_state();
-
+
protected:
// view overrides
virtual void view_update();
@@ -86,7 +86,7 @@ private:
struct state_item
{
state_item(int index, const char *name, UINT8 valuechars);
-
+
state_item * m_next; // next item
UINT64 m_lastval; // last value
UINT64 m_currval; // current value
@@ -104,7 +104,7 @@ private:
int m_divider; // dividing column
UINT64 m_last_update; // execution counter at last update
state_item * m_state_list; // state data
-
+
// constants
static const int REG_DIVIDER = -10;
static const int REG_CYCLES = -11;