mirror of
https://github.com/holub/mame
synced 2025-05-08 07:11:42 +03:00
fix compile (nw)
This commit is contained in:
parent
c20b12eea3
commit
b151f080ae
@ -53,7 +53,7 @@ device_t* device_slot_interface::get_card_device()
|
||||
return dev;
|
||||
}
|
||||
|
||||
const bool device_slot_interface::all_internal()
|
||||
const bool device_slot_interface::all_internal() const
|
||||
{
|
||||
for (int i = 0; m_slot_interfaces && m_slot_interfaces[i].name != NULL; i++)
|
||||
if (!m_slot_interfaces[i].internal)
|
||||
|
@ -59,7 +59,7 @@ public:
|
||||
const void *default_config() const { return m_default_config; }
|
||||
const UINT32 default_clock() const { return m_default_clock; }
|
||||
const bool fixed() const { return m_fixed; }
|
||||
const bool all_internal();
|
||||
const bool all_internal() const;
|
||||
device_t* get_card_device();
|
||||
protected:
|
||||
const char *m_default_card;
|
||||
|
Loading…
Reference in New Issue
Block a user