mirror of
https://github.com/holub/mame
synced 2025-05-12 00:58:53 +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;
|
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++)
|
for (int i = 0; m_slot_interfaces && m_slot_interfaces[i].name != NULL; i++)
|
||||||
if (!m_slot_interfaces[i].internal)
|
if (!m_slot_interfaces[i].internal)
|
||||||
|
@ -59,7 +59,7 @@ public:
|
|||||||
const void *default_config() const { return m_default_config; }
|
const void *default_config() const { return m_default_config; }
|
||||||
const UINT32 default_clock() const { return m_default_clock; }
|
const UINT32 default_clock() const { return m_default_clock; }
|
||||||
const bool fixed() const { return m_fixed; }
|
const bool fixed() const { return m_fixed; }
|
||||||
const bool all_internal();
|
const bool all_internal() const;
|
||||||
device_t* get_card_device();
|
device_t* get_card_device();
|
||||||
protected:
|
protected:
|
||||||
const char *m_default_card;
|
const char *m_default_card;
|
||||||
|
Loading…
Reference in New Issue
Block a user