Codechange: Move Sound Driver parameter name listings (#10127)

This commit is contained in:
krysclarke
2022-11-06 01:42:20 +11:00
committed by GitHub
parent 3b3c9c1c3a
commit 21cea308f9
6 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ public:
/** Factory for the SDL sound driver. */
class FSoundDriver_SDL : public DriverFactoryBase {
public:
FSoundDriver_SDL() : DriverFactoryBase(Driver::DT_SOUND, 5, "sdl", "SDL Sound Driver") {}
FSoundDriver_SDL() : DriverFactoryBase(Driver::DT_SOUND, 5, "sdl", "SDL Sound Driver (param hz,samples)") {}
Driver *CreateInstance() const override { return new SoundDriver_SDL(); }
};