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