diff options
Diffstat (limited to 'src/emu/machine.c')
-rw-r--r-- | src/emu/machine.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/machine.c b/src/emu/machine.c index 23991cbe98f..06e112e758d 100644 --- a/src/emu/machine.c +++ b/src/emu/machine.c @@ -275,6 +275,8 @@ void running_machine::start() if ((debug_flags & DEBUG_FLAG_ENABLED) != 0) debugger_init(*this); + m_render->resolve_tags(); + // call the game driver's init function // this is where decryption is done and memory maps are altered // so this location in the init order is important @@ -848,7 +850,7 @@ void running_machine::base_datetime(system_time &systime) void running_machine::current_datetime(system_time &systime) { - systime.set(m_base_time + this->time().seconds); + systime.set(m_base_time + this->time().seconds()); } |