diff --git a/src/mame/machine/esqvfd.h b/src/mame/machine/esqvfd.h index 83d2f8fc3c3..5051f2c3e27 100644 --- a/src/mame/machine/esqvfd.h +++ b/src/mame/machine/esqvfd.h @@ -45,10 +45,10 @@ protected: virtual int32_t set(unsigned n, int32_t value) = 0; }; - template class output_helper_impl : public output_helper, protected output_finder { + template class output_helper_impl : public output_helper, protected output_manager::output_finder { public: - output_helper_impl(device_t &device) : output_finder(device, "vfd%u", 0U) { } - virtual void resolve() override { output_finder::resolve(); } + output_helper_impl(device_t &device) : output_manager::output_finder(device, "vfd%u", 0U) { } + virtual void resolve() override { output_manager::output_finder::resolve(); } virtual int32_t set(unsigned n, int32_t value) override { return this->operator[](n) = value; } };