diff options
author | 2016-08-01 18:46:56 +1000 | |
---|---|---|
committer | 2016-08-01 18:47:22 +1000 | |
commit | 15e7be7ac8e4127e9fc0f9b5c248f4a73ba85703 (patch) | |
tree | 71346f2c2d1ac08e0e9c9f4dea8f2537af380143 /src/devices/imagedev/midiout.cpp | |
parent | c4c05c9735a5b956de128d6017027658b6c61a8e (diff) |
Turn image init/validate into scoped enums to avoid accidental casts to/from integer and boolean types
The image error should also be turned into a scoped enum - the menus were assuming it was the same thing as an init result
Diffstat (limited to 'src/devices/imagedev/midiout.cpp')
-rw-r--r-- | src/devices/imagedev/midiout.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/imagedev/midiout.cpp b/src/devices/imagedev/midiout.cpp index a8651c40b49..d1509080f59 100644 --- a/src/devices/imagedev/midiout.cpp +++ b/src/devices/imagedev/midiout.cpp @@ -65,7 +65,7 @@ void midiout_device::device_config_complete(void) call_load -------------------------------------------------*/ -bool midiout_device::call_load(void) +image_init_result midiout_device::call_load(void) { m_midi = machine().osd().create_midi_device(); @@ -73,10 +73,10 @@ bool midiout_device::call_load(void) { global_free(m_midi); m_midi = nullptr; - return IMAGE_INIT_FAIL; + return image_init_result::FAIL; } - return IMAGE_INIT_PASS; + return image_init_result::PASS; } /*------------------------------------------------- |