CDROM: Add current file to debug window

This commit is contained in:
Stenzek
2023-11-29 22:01:45 +10:00
parent 5442242c64
commit 35799aba47
2 changed files with 207 additions and 61 deletions

View File

@ -36,6 +36,7 @@ public:
bool HasMedia() const { return static_cast<bool>(m_media); }
const CDImage* GetMedia() const { return m_media.get(); }
CDImage* GetMedia() { return m_media.get(); }
const std::string& GetMediaFileName() const { return m_media->GetFileName(); }
bool IsUsingThread() const { return m_read_thread.joinable(); }