mirror of
https://github.com/holub/mame
synced 2025-05-16 19:00:43 +03:00
Fixed cassette create (no whatsnew)
This commit is contained in:
parent
4c7857dcc8
commit
e0720531de
@ -242,6 +242,11 @@ void cassette_image_device::device_start()
|
||||
m_state = m_default_state;
|
||||
}
|
||||
|
||||
bool cassette_image_device::call_create(int format_type, option_resolution *format_options)
|
||||
{
|
||||
return call_load();
|
||||
}
|
||||
|
||||
bool cassette_image_device::call_load()
|
||||
{
|
||||
casserr_t err;
|
||||
|
@ -64,6 +64,7 @@ public:
|
||||
|
||||
// image-level overrides
|
||||
virtual bool call_load();
|
||||
virtual bool call_create(int format_type, option_resolution *format_options);
|
||||
virtual void call_unload();
|
||||
virtual void call_display();
|
||||
virtual void call_display_info() { if (m_device_displayinfo) m_device_displayinfo(*this); }
|
||||
|
Loading…
Reference in New Issue
Block a user