Recompute expression values even if not dirty.

Fixes disassembly not scrolling. (Need to recompile src\emu\debug\dv*)
This commit is contained in:
Aaron Giles 2010-06-25 14:34:56 +00:00
parent c6feb5b29b
commit 25c5511610

View File

@ -303,7 +303,7 @@ public:
// getters
bool dirty() const { return m_dirty; }
UINT64 last_value() const { return m_result; }
UINT64 value() { if (m_dirty) recompute(); return m_result; }
UINT64 value() { recompute(); return m_result; }
const char *string() const { return m_string; }
symbol_table *context() const { return m_context; }