diff options
author | alberth <alberth@openttd.org> | 2010-12-21 15:23:54 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2010-12-21 15:23:54 +0000 |
commit | b633ffaa1d58a8ad0f0e9aa34982877c8cf552a2 (patch) | |
tree | 134c9a17f2148602117ae73920f7987844082a7b /src/os | |
parent | 884b44990a7effe740e705a0183d28f38bfa2b9d (diff) | |
download | openttd-b633ffaa1d58a8ad0f0e9aa34982877c8cf552a2.tar.xz |
(svn r21571) -Codechange: Having a break after a return is no good.
Diffstat (limited to 'src/os')
-rw-r--r-- | src/os/windows/win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp index 021ce60a1..f3ea1b0c1 100644 --- a/src/os/windows/win32.cpp +++ b/src/os/windows/win32.cpp @@ -718,7 +718,7 @@ HRESULT OTTDSHGetFolderPath(HWND hwnd, int csidl, HANDLE hToken, DWORD dwFlags, _tcsncat(pszPath, _T("\\Fonts"), MAX_PATH); return (HRESULT)0; - break; + /* XXX - other types to go here when needed... */ } } |