(svn r10458) -Fix (r10444): restore original descriptions for win32 drivers

This commit is contained in:
peter1138
2007-07-06 22:15:00 +00:00
parent 7c2b432670
commit 472bfba5f8
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ public:
class FSoundDriver_Win32: public SoundDriverFactory<FSoundDriver_Win32> {
public:
/* virtual */ const char *GetName() { return "win32"; }
/* virtual */ const char *GetDescription() { return "Win32 Sound Driver"; }
/* virtual */ const char *GetDescription() { return "Win32 WaveOut Driver"; }
/* virtual */ Driver *CreateInstance() { return new SoundDriver_Win32(); }
};