fix compile (nw)

This commit is contained in:
Miodrag Milanovic 2013-02-14 13:36:32 +00:00
parent c20b12eea3
commit b151f080ae
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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;