This commit is contained in:
twinaphex 2016-08-07 15:44:36 +02:00
parent e2d5e8df9a
commit 2751146f0f
2 changed files with 0 additions and 10 deletions

View File

@ -43,12 +43,3 @@ CDAccess *cdaccess_open_image(const char *path, bool image_memcache)
return ret;
}
CDAccess *cdaccess_open_phys(const char *devicename)
{
#ifdef HAVE_LIBCDIO
return new CDAccess_Physical(devicename);
#else
throw MDFN_Error(0, _("Physical CD access support not compiled in."));
#endif
}

View File

@ -26,6 +26,5 @@ class CDAccess
};
CDAccess *cdaccess_open_image(const char *path, bool image_memcache);
CDAccess *cdaccess_open_phys(const char *devicename);
#endif