From 62259a72b303ea41cfb4ce5725e929b37cebe0cd Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Thu, 30 Jan 2020 01:38:36 -0700 Subject: [PATCH] Only show DS(i) ROM dumping option, if cart is inserted --- arm9/source/driveMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/driveMenu.cpp b/arm9/source/driveMenu.cpp index 4212fe2..a355823 100644 --- a/arm9/source/driveMenu.cpp +++ b/arm9/source/driveMenu.cpp @@ -189,7 +189,7 @@ void driveMenu (void) { if (flashcardMounted) { dmMaxCursors++; dmAssignedOp[dmMaxCursors] = 1; - } else { + } else if (!(REG_SCFG_MC & BIT(0))) { dmMaxCursors++; dmAssignedOp[dmMaxCursors] = 4; }