summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2019-10-26 13:49:24 +0100
committer smf- <smf-@users.noreply.github.com>2019-10-26 13:56:20 +0100
commit236c87cfea79d94062768a0d69923cf58fef4403 (patch)
tree169a2d3ba6de230c9f3e0fa68d203c26a4d2b7ff
parent9ce4a078e0707dfbcace92abf4dc1375d811d0f8 (diff)
Fix for building with visual studio 2019 (nw)
-rw-r--r--src/devices/machine/timekpr.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/machine/timekpr.cpp b/src/devices/machine/timekpr.cpp
index f7cfed5451c..ce9d6d3f327 100644
--- a/src/devices/machine/timekpr.cpp
+++ b/src/devices/machine/timekpr.cpp
@@ -202,9 +202,6 @@ void timekeeper_device::device_start()
{
system_time systime;
- /* validate some basic stuff */
- assert(this != nullptr);
-
machine().base_datetime(systime);
m_control = 0;
@@ -237,7 +234,6 @@ void timekeeper_device::device_start()
m_watchdog_timer->adjust(attotime::never);
m_reset_cb.resolve_safe();
m_irq_cb.resolve_safe();
-
}
//-------------------------------------------------