diff options
-rw-r--r-- | src/sound/win32_s.h | 2 | ||||
-rw-r--r-- | src/video/win32_v.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sound/win32_s.h b/src/sound/win32_s.h index 10a1f7502..820e6c74e 100644 --- a/src/sound/win32_s.h +++ b/src/sound/win32_s.h @@ -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(); } }; diff --git a/src/video/win32_v.h b/src/video/win32_v.h index afd33a88c..0b05ff5db 100644 --- a/src/video/win32_v.h +++ b/src/video/win32_v.h @@ -25,7 +25,7 @@ public: class FVideoDriver_Win32: public VideoDriverFactory<FVideoDriver_Win32> { public: /* virtual */ const char *GetName() { return "win32"; } - /* virtual */ const char *GetDescription() { return "Win32 Video Driver"; } + /* virtual */ const char *GetDescription() { return "Win32 GDI Video Driver"; } /* virtual */ Driver *CreateInstance() { return new VideoDriver_Win32(); } }; |