mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 04:45:47 -04:00
FullscreenUI: Fix controller navigation in disc change
This commit is contained in:
@ -1773,8 +1773,11 @@ bool HasMedia()
|
||||
return g_cdrom.HasMedia();
|
||||
}
|
||||
|
||||
const std::string& GetMediaFileName()
|
||||
std::string GetMediaFileName()
|
||||
{
|
||||
if (!g_cdrom.HasMedia())
|
||||
return {};
|
||||
|
||||
return g_cdrom.GetMediaFileName();
|
||||
}
|
||||
|
||||
|
@ -189,7 +189,7 @@ bool DumpVRAM(const char* filename);
|
||||
bool DumpSPURAM(const char* filename);
|
||||
|
||||
bool HasMedia();
|
||||
const std::string& GetMediaFileName();
|
||||
std::string GetMediaFileName();
|
||||
bool InsertMedia(const char* path);
|
||||
void RemoveMedia();
|
||||
|
||||
|
Reference in New Issue
Block a user