From 70b5d6bd42dcafbc1ae33b2d7b830f357f90e667 Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Wed, 9 Apr 2025 09:31:01 -0600 Subject: [PATCH] call DVD_Mount explicitly for GameCube --- source/fileop.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/fileop.cpp b/source/fileop.cpp index 5e1838e..d812713 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -321,7 +321,14 @@ bool MountDVD(bool silent) { ShowAction("Loading DVD..."); +#ifdef HW_DOL + DVD_Mount(); + s32 dvdstatus = DVD_GetDriveStatus(); + + if (dvdstatus == DVD_STATE_NO_DISK) +#else if(!dvd->isInserted(dvd)) +#endif { if(silent) break;