mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
Fix for older GCC, thanks to Robbbert (no whatsnew)
This commit is contained in:
parent
5a953d9251
commit
c0a5c0be4b
@ -437,7 +437,7 @@ class device_t::memory_region_finder : public device_t::object_finder_base<memor
|
||||
public:
|
||||
// construction/destruction
|
||||
memory_region_finder(device_t &base, const char *tag)
|
||||
: object_finder_base(base, tag) { }
|
||||
: object_finder_base<memory_region>(base, tag) { }
|
||||
|
||||
// finder
|
||||
virtual bool findit()
|
||||
@ -471,7 +471,7 @@ class device_t::memory_bank_finder : public device_t::object_finder_base<memory_
|
||||
public:
|
||||
// construction/destruction
|
||||
memory_bank_finder(device_t &base, const char *tag)
|
||||
: object_finder_base(base, tag) { }
|
||||
: object_finder_base<memory_bank>(base, tag) { }
|
||||
|
||||
// finder
|
||||
virtual bool findit()
|
||||
@ -505,7 +505,7 @@ class device_t::ioport_finder : public device_t::object_finder_base<input_port_c
|
||||
public:
|
||||
// construction/destruction
|
||||
ioport_finder(device_t &base, const char *tag)
|
||||
: object_finder_base(base, tag) { }
|
||||
: object_finder_base<input_port_config>(base, tag) { }
|
||||
|
||||
// finder
|
||||
virtual bool findit()
|
||||
|
Loading…
Reference in New Issue
Block a user