From c99a9358312b8b04280a8d72829c54d78063edbb Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 14 Jan 2024 14:36:16 +1000 Subject: [PATCH] CDVD: Fix block dump path generation --- pcsx2/CDVD/CDVDcommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/CDVD/CDVDcommon.cpp b/pcsx2/CDVD/CDVDcommon.cpp index 1cb917589e..564fa14b93 100644 --- a/pcsx2/CDVD/CDVDcommon.cpp +++ b/pcsx2/CDVD/CDVDcommon.cpp @@ -353,7 +353,7 @@ bool DoCDVDopen(Error* error) return true; } - std::string dump_name(Path::StripExtension(m_SourceFilename[CurrentSourceType])); + std::string dump_name(Path::GetFileTitle(m_SourceFilename[CurrentSourceType])); if (dump_name.empty()) dump_name = "Untitled";