From db2350aa3df7d4876702772248699c43b74389bd Mon Sep 17 00:00:00 2001 From: kub Date: Thu, 23 Jan 2025 21:25:15 +0100 Subject: [PATCH] libretro, fix crash wenn loading CD on non-CD system --- platform/libretro/libretro.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/platform/libretro/libretro.c b/platform/libretro/libretro.c index 6abcd9cf..dd30ad13 100644 --- a/platform/libretro/libretro.c +++ b/platform/libretro/libretro.c @@ -1011,9 +1011,11 @@ static bool disk_set_image_index(unsigned int index) disks[index].fname); ret = -1; - cd_type = PicoCdCheck(disks[index].fname, NULL); - if (cd_type >= 0 && cd_type != CT_UNKNOWN) - ret = cdd_load(disks[index].fname, cd_type); + if (PicoIn.AHW & PAHW_MCD) { + cd_type = PicoCdCheck(disks[index].fname, NULL); + if (cd_type >= 0 && cd_type != CT_UNKNOWN) + ret = cdd_load(disks[index].fname, cd_type); + } if (ret != 0) { if (log_cb) log_cb(RETRO_LOG_ERROR, "Load failed, invalid CD image?\n"); -- 2.39.5