diff options
author | smatz <smatz@openttd.org> | 2009-08-09 14:40:34 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-08-09 14:40:34 +0000 |
commit | e707c824126ff8de5903d7c94f332d670529318a (patch) | |
tree | 9e51369165d8d8bfd6c03cc48386349886c0568f /src/video/cocoa | |
parent | 05a65dcc126d749e569562412c9b38ca6439eaf3 (diff) | |
download | openttd-e707c824126ff8de5903d7c94f332d670529318a.tar.xz |
(svn r17131) -Codechange: apply coding style to some switch statements
Diffstat (limited to 'src/video/cocoa')
-rw-r--r-- | src/video/cocoa/wnd_quickdraw.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/cocoa/wnd_quickdraw.mm b/src/video/cocoa/wnd_quickdraw.mm index 0b6434838..28cf73d93 100644 --- a/src/video/cocoa/wnd_quickdraw.mm +++ b/src/video/cocoa/wnd_quickdraw.mm @@ -502,7 +502,7 @@ inline void WindowQuickdrawSubdriver::BlitToView(int left, int top, int right, i { switch (device_depth) { case 32: - switch(buffer_depth) { + switch (buffer_depth) { case 32: Blit32ToView32(left, top, right, bottom); break; |