diff --git a/src/openttd.cpp b/src/openttd.cpp index 4ba83620f9..06ff78c713 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -176,7 +176,7 @@ static void ShowHelp() "\n" "Command line options:\n" " -v drv = Set video driver (see below)\n" - " -s drv = Set sound driver (see below) (param bufsize,hz)\n" + " -s drv = Set sound driver (see below)\n" " -m drv = Set music driver (see below)\n" " -b drv = Set the blitter to use (see below)\n" " -r res = Set resolution (for instance 800x600)\n" diff --git a/src/sound/allegro_s.h b/src/sound/allegro_s.h index 6d40c58760..de609f647f 100644 --- a/src/sound/allegro_s.h +++ b/src/sound/allegro_s.h @@ -26,7 +26,7 @@ public: /** Factory for the allegro sound driver. */ class FSoundDriver_Allegro : public DriverFactoryBase { public: - FSoundDriver_Allegro() : DriverFactoryBase(Driver::DT_SOUND, 4, "allegro", "Allegro Sound Driver") {} + FSoundDriver_Allegro() : DriverFactoryBase(Driver::DT_SOUND, 4, "allegro", "Allegro Sound Driver (param hz,samples)") {} /* virtual */ Driver *CreateInstance() const { return new SoundDriver_Allegro(); } }; diff --git a/src/sound/cocoa_s.h b/src/sound/cocoa_s.h index dca5421915..f1e623ce5a 100644 --- a/src/sound/cocoa_s.h +++ b/src/sound/cocoa_s.h @@ -22,7 +22,7 @@ public: class FSoundDriver_Cocoa : public DriverFactoryBase { public: - FSoundDriver_Cocoa() : DriverFactoryBase(Driver::DT_SOUND, 10, "cocoa", "Cocoa Sound Driver") {} + FSoundDriver_Cocoa() : DriverFactoryBase(Driver::DT_SOUND, 10, "cocoa", "Cocoa Sound Driver (param hz)") {} Driver *CreateInstance() const override { return new SoundDriver_Cocoa(); } }; diff --git a/src/sound/sdl_s.h b/src/sound/sdl_s.h index 2b3be4d14c..fbe7d77d84 100644 --- a/src/sound/sdl_s.h +++ b/src/sound/sdl_s.h @@ -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(); } }; diff --git a/src/sound/win32_s.h b/src/sound/win32_s.h index 6f8f9791db..5722b2089d 100644 --- a/src/sound/win32_s.h +++ b/src/sound/win32_s.h @@ -24,7 +24,7 @@ public: /** Factory for the sound driver for Windows. */ class FSoundDriver_Win32 : public DriverFactoryBase { public: - FSoundDriver_Win32() : DriverFactoryBase(Driver::DT_SOUND, 9, "win32", "Win32 WaveOut Sound Driver") {} + FSoundDriver_Win32() : DriverFactoryBase(Driver::DT_SOUND, 9, "win32", "Win32 WaveOut Sound Driver (param bufsize,hz)") {} Driver *CreateInstance() const override { return new SoundDriver_Win32(); } }; diff --git a/src/sound/xaudio2_s.h b/src/sound/xaudio2_s.h index 9fcd26fd0a..621655d8d5 100644 --- a/src/sound/xaudio2_s.h +++ b/src/sound/xaudio2_s.h @@ -24,7 +24,7 @@ public: /** Factory for the XAudio2 sound driver. */ class FSoundDriver_XAudio2 : public DriverFactoryBase { public: - FSoundDriver_XAudio2() : DriverFactoryBase(Driver::DT_SOUND, 10, "xaudio2", "XAudio2 Sound Driver") {} + FSoundDriver_XAudio2() : DriverFactoryBase(Driver::DT_SOUND, 10, "xaudio2", "XAudio2 Sound Driver (param bufsize,hz)") {} Driver *CreateInstance() const override { return new SoundDriver_XAudio2(); } };