diff options
Diffstat (limited to 'src/lib/util/dvdrom.cpp')
-rw-r--r-- | src/lib/util/dvdrom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/dvdrom.cpp b/src/lib/util/dvdrom.cpp index 3a19291b16f..36dc29e7215 100644 --- a/src/lib/util/dvdrom.cpp +++ b/src/lib/util/dvdrom.cpp @@ -58,7 +58,7 @@ dvdrom_file::dvdrom_file(chd_file *_chd) throw nullptr; /* check it's actually a DVD-ROM */ - if (chd->check_is_dvd()) + if (!chd->is_dvd()) throw nullptr; sector_count = chd->unit_count(); |