diff options
Diffstat (limited to 'src/devices/imagedev/bitbngr.cpp')
-rw-r--r-- | src/devices/imagedev/bitbngr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/imagedev/bitbngr.cpp b/src/devices/imagedev/bitbngr.cpp index 79e4dd0df36..18842cb8005 100644 --- a/src/devices/imagedev/bitbngr.cpp +++ b/src/devices/imagedev/bitbngr.cpp @@ -82,16 +82,16 @@ void bitbanger_device::device_config_complete(void) call_load -------------------------------------------------*/ -bool bitbanger_device::call_load(void) +image_init_result bitbanger_device::call_load(void) { /* we don't need to do anything special */ - return IMAGE_INIT_PASS; + return image_init_result::PASS; } -bool bitbanger_device::call_create(int format_type, util::option_resolution *format_options) +image_init_result bitbanger_device::call_create(int format_type, util::option_resolution *format_options) { /* we don't need to do anything special */ - return IMAGE_INIT_PASS; + return image_init_result::PASS; } /*------------------------------------------------- |