SPU2: Remove GetLongName() from SndOutModule

Unused since WX.
This commit is contained in:
Stenzek 2023-03-31 01:22:31 +10:00 committed by refractionpcsx2
parent b00852fada
commit 27b45276ae
4 changed files with 0 additions and 19 deletions

View File

@ -48,11 +48,6 @@ namespace
return "nullout";
}
const char* GetLongName() const override
{
return "No Sound (Emulate SPU2 only)";
}
const char* const* GetBackendNames() const override
{
return nullptr;

View File

@ -326,10 +326,6 @@ public:
// (usually just matches the driver's cpp filename)
virtual const char* GetIdent() const = 0;
// Returns the long name / description for this driver.
// (for use in configuration screen)
virtual const char* GetLongName() const = 0;
// Returns a null-terminated list of backends, or nullptr.
virtual const char* const* GetBackendNames() const = 0;

View File

@ -378,11 +378,6 @@ public:
return "cubeb";
}
const char* GetLongName() const override
{
return "Cubeb (Cross-platform)";
}
const char* const* GetBackendNames() const override
{
return cubeb_get_backend_names();

View File

@ -359,11 +359,6 @@ public:
return "xaudio2";
}
const char* GetLongName() const override
{
return "XAudio 2 (Recommended)";
}
const char* const* GetBackendNames() const override
{
return nullptr;