diff options
Diffstat (limited to 'src/mess/machine/egret.c')
-rw-r--r-- | src/mess/machine/egret.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/machine/egret.c b/src/mess/machine/egret.c index b8cb5e78cf6..b0d760a635a 100644 --- a/src/mess/machine/egret.c +++ b/src/mess/machine/egret.c @@ -387,8 +387,7 @@ void egret_device::device_start() save_item(NAME(pram)); save_item(NAME(disk_pram)); - astring tempstring; - UINT8 *rom = device().machine().root_device().memregion(device().subtag(tempstring, EGRET_CPU_TAG).c_str())->base(); + UINT8 *rom = device().machine().root_device().memregion(device().subtag(EGRET_CPU_TAG).c_str())->base(); if (rom) { |