From ab4316fd4e78c917ef15dfb813c26d44a99d05cb Mon Sep 17 00:00:00 2001 From: d0k3 Date: Thu, 18 Feb 2021 18:55:36 +0100 Subject: [PATCH] Prevent titleentry deletion in title manager --- arm9/source/filesys/fsdrive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/filesys/fsdrive.c b/arm9/source/filesys/fsdrive.c index 756c318..e680942 100644 --- a/arm9/source/filesys/fsdrive.c +++ b/arm9/source/filesys/fsdrive.c @@ -22,7 +22,7 @@ int DriveType(const char* path) { } else if (*search_pattern && *search_path && (strncmp(path, "Z:", 3) == 0)) { type = DRV_SEARCH; } else if (title_manager_mode && (strncmp(path, "Y:", 3) == 0)) { - type = DRV_TITLEMAN; + type = DRV_VIRTUAL | DRV_TITLEMAN; } else if ((pdrv >= 0) && (pdrv < NORM_FS)) { if (pdrv == 0) { type = DRV_FAT | DRV_SDCARD | DRV_STDFAT;