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 dc31c4ccb83..07b88f41386 100644 --- a/src/devices/imagedev/bitbngr.cpp +++ b/src/devices/imagedev/bitbngr.cpp @@ -85,16 +85,16 @@ const software_list_loader &bitbanger_device::get_software_list_loader() const call_load -------------------------------------------------*/ -image_init_result bitbanger_device::call_load() +std::error_condition bitbanger_device::call_load() { // we don't need to do anything special - return image_init_result::PASS; + return std::error_condition(); } -image_init_result bitbanger_device::call_create(int format_type, util::option_resolution *format_options) +std::error_condition bitbanger_device::call_create(int format_type, util::option_resolution *format_options) { // we don't need to do anything special - return image_init_result::PASS; + return std::error_condition(); } /*------------------------------------------------- |