Skip to content

Commit

Permalink
VMManager: Fix disc change path message
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Dec 30, 2023
1 parent ecd3b87 commit a93663a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pcsx2/VMManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,8 @@ bool VMManager::ChangeDisc(CDVD_SourceType source, std::string path)
else
{
Host::AddIconOSDMessage("ChangeDisc", ICON_FA_COMPACT_DISC,
fmt::format(TRANSLATE_FS("VMManager", "Disc changed to '{}'."), Path::GetFileName(path)),
fmt::format(TRANSLATE_FS("VMManager", "Disc changed to '{}'."),
Path::GetFileName(CDVDsys_GetFile(CDVDsys_GetSourceType()))),
Host::OSD_INFO_DURATION);
}
}
Expand Down

0 comments on commit a93663a

Please sign in to comment.