diff options
author | peter1138 <peter1138@openttd.org> | 2007-07-06 22:15:00 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-07-06 22:15:00 +0000 |
commit | 472bfba5f8273ae5aff61a4a2c514b6b57d1ed49 (patch) | |
tree | f8025b09877741f381341b3fab7ea27411d6afc7 /src | |
parent | 7c2b43267045fec33c66c9d7c3372298b1f56848 (diff) | |
download | openttd-472bfba5f8273ae5aff61a4a2c514b6b57d1ed49.tar.xz |
(svn r10458) -Fix (r10444): restore original descriptions for win32 drivers
Diffstat (limited to 'src')
-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(); } }; |