From e05138c353fb0858c50492618e8de854f60e88b9 Mon Sep 17 00:00:00 2001 From: dborth Date: Sun, 6 Feb 2011 20:47:32 +0000 Subject: [PATCH] update to match iso9660 devoptab --- source/fileop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/fileop.cpp b/source/fileop.cpp index 209d7ac..4d32428 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -305,7 +305,7 @@ bool MountDVD(bool silent) if(unmountRequired[DEVICE_DVD]) { unmountRequired[DEVICE_DVD] = false; - ISO9660_Unmount(); + ISO9660_Unmount("dvd:"); } while(retry) @@ -319,7 +319,7 @@ bool MountDVD(bool silent) retry = ErrorPromptRetry("No disc inserted!"); } - else if(!ISO9660_Mount()) + else if(!ISO9660_Mount("dvd", dvd)) { if(silent) break;