diff options
Diffstat (limited to 'src/devices/imagedev/midiin.cpp')
-rw-r--r-- | src/devices/imagedev/midiin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/imagedev/midiin.cpp b/src/devices/imagedev/midiin.cpp index 54a9f1c2297..e2386afb532 100644 --- a/src/devices/imagedev/midiin.cpp +++ b/src/devices/imagedev/midiin.cpp @@ -129,7 +129,7 @@ image_init_result midiin_device::call_load() { // attempt to load if it's a real file m_err = load_image_by_path(OPEN_FLAG_READ, filename()); - if (m_err == IMAGE_ERROR_SUCCESS) + if (!m_err) { // if the parsing succeeds, schedule the start to happen at least // 10 seconds after starting to allow the keyboards to initialize |