summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-05-28 14:25:55 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-05-28 14:25:55 -0400
commit007d80a9b6c74db54fe845fc4ab1331a02e801c5 (patch)
tree3b3aa34d6c75658cb2c4ab8b2bd987cd893880d5
parentf3065f4da26f977c51dd405b19dbdb10d81da77c (diff)
n64_periphs: Fix finder tags (nw)
-rw-r--r--src/mame/machine/n64.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/n64.cpp b/src/mame/machine/n64.cpp
index 26f62632c8b..c0046b6ee7d 100644
--- a/src/mame/machine/n64.cpp
+++ b/src/mame/machine/n64.cpp
@@ -19,9 +19,9 @@ n64_periphs::n64_periphs(const machine_config &mconfig, const char *tag, device_
, dd_present(false)
, disk_present(false)
, cart_present(false)
- , m_vr4300(*this, ":maincpu")
- , m_rsp(*this, ":rsp")
- , ai_dac(*this, "dac%u", 1U)
+ , m_vr4300(*this, "^maincpu")
+ , m_rsp(*this, "^rsp")
+ , ai_dac(*this, "^dac%u", 1U)
{
for (int32_t i = 0; i < 256; i++)
{