diff options
Diffstat (limited to 'src/devices/imagedev/wafadrive.cpp')
-rw-r--r-- | src/devices/imagedev/wafadrive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/wafadrive.cpp b/src/devices/imagedev/wafadrive.cpp index 9e9e353da32..3bbdfa994ec 100644 --- a/src/devices/imagedev/wafadrive.cpp +++ b/src/devices/imagedev/wafadrive.cpp @@ -41,9 +41,9 @@ void wafadrive_image_device::device_start() { } -std::error_condition wafadrive_image_device::call_load() +std::pair<std::error_condition, std::string> wafadrive_image_device::call_load() { - return std::error_condition(); + return std::make_pair(std::error_condition(), std::string()); } void wafadrive_image_device::call_unload() |