summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-10-24 19:17:23 +0200
committer hap <happppp@users.noreply.github.com>2022-10-24 19:17:58 +0200
commit50fde3e7ae77f7d31fed213ba7594898d10fa218 (patch)
tree7d6fab238c081c6e27350df23dc0efd290f72a32 /src/devices/machine
parente18404655722351f710201032e56819b9d957983 (diff)
timer device: rename getter functions to match emu_timer
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/timer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/timer.h b/src/devices/machine/timer.h
index c002bd3148a..dbd7e0763f6 100644
--- a/src/devices/machine/timer.h
+++ b/src/devices/machine/timer.h
@@ -97,10 +97,10 @@ public:
}
// timing information
- attotime time_elapsed() const { return m_timer->elapsed(); }
- attotime time_left() const { return m_timer->remaining(); }
- attotime start_time() const { return m_timer->start(); }
- attotime fire_time() const { return m_timer->expire(); }
+ attotime elapsed() const { return m_timer->elapsed(); }
+ attotime remaining() const { return m_timer->remaining(); }
+ attotime start() const { return m_timer->start(); }
+ attotime expire() const { return m_timer->expire(); }
attotime period() const { return m_timer ? m_timer->period() : m_period; }
private: