mirror of
https://github.com/holub/mame
synced 2025-05-15 18:32:02 +03:00
Recompute expression values even if not dirty.
Fixes disassembly not scrolling. (Need to recompile src\emu\debug\dv*)
This commit is contained in:
parent
c6feb5b29b
commit
25c5511610
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user