From 24d13f4d03d72e5827db9e9b7fa2b2bf88ca4e98 Mon Sep 17 00:00:00 2001 From: Sorgelig Date: Sun, 19 Dec 2021 14:16:35 +0800 Subject: [PATCH] PSX: fix CD mounting. --- menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu.cpp b/menu.cpp index 2407335..4ae43a3 100644 --- a/menu.cpp +++ b/menu.cpp @@ -2242,7 +2242,7 @@ void HandleUI(void) pcecd_set_image(ioctl_index, selPath); cheats_init(selPath, 0); } - else if (is_psx()) + else if (is_psx() && ioctl_index == 1) { psx_mount_cd(user_io_ext_idx(selPath, fs_pFileExt) << 6 | (menusub + 1), ioctl_index, selPath); }