diff --git a/src/devices/machine/hp_taco.cpp b/src/devices/machine/hp_taco.cpp index 654c32f1182..c0f62514653 100644 --- a/src/devices/machine/hp_taco.cpp +++ b/src/devices/machine/hp_taco.cpp @@ -1686,7 +1686,7 @@ void hp_taco_device::call_unload() set_tape_present(false); } -int hp_taco_device::call_display(std::string& s) +int hp_taco_device::call_display_taco(std::string& s) { // Mostly lifted from cassette_image_device::call_display ;) diff --git a/src/devices/machine/hp_taco.h b/src/devices/machine/hp_taco.h index 4ae2ab9464f..0aeb41c9c36 100644 --- a/src/devices/machine/hp_taco.h +++ b/src/devices/machine/hp_taco.h @@ -47,7 +47,7 @@ public: virtual bool call_load() override; virtual bool call_create(int format_type, option_resolution *format_options) override; virtual void call_unload() override; - virtual int call_display(std::string& s) override; + virtual int call_display_taco(std::string& s); virtual iodevice_t image_type() const override { return IO_MAGTAPE; } virtual bool is_readable() const override { return true; } virtual bool is_writeable() const override { return true; }