diff options
author | terkhen <terkhen@openttd.org> | 2010-07-29 14:26:28 +0000 |
---|---|---|
committer | terkhen <terkhen@openttd.org> | 2010-07-29 14:26:28 +0000 |
commit | 88ca183191d781effd96add853e40d37ce3a0233 (patch) | |
tree | 9820f95a2ea7ef95bf8c05fbd3c12ecccceb42f8 /src/video | |
parent | 04242e19cf29aedca783f4657e2c448d40f37420 (diff) | |
download | openttd-88ca183191d781effd96add853e40d37ce3a0233.tar.xz |
(svn r20239) -Doc: Give a common name to all fall throughs (FALL THROUGH).
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/win32_v.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index 34129fc05..8962c900f 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -364,7 +364,7 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP case WM_PALETTECHANGED: if ((HWND)wParam == hwnd) return 0; - /* FALLTHROUGH */ + /* FALL THROUGH */ case WM_QUERYNEWPALETTE: { HDC hDC = GetWindowDC(hwnd); |