diff options
author | rubidium <rubidium@openttd.org> | 2013-11-26 15:08:15 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2013-11-26 15:08:15 +0000 |
commit | f514e3197853694efabad7a084b16e44b54d83b4 (patch) | |
tree | 7a9edf8537c0fcfe1661bd906c58702c569307ca /src | |
parent | 54a8e00a7e3348ed8acca07b2078608b699637dc (diff) | |
download | openttd-f514e3197853694efabad7a084b16e44b54d83b4.tar.xz |
(svn r26127) -Fix (r18186): missing break
Diffstat (limited to 'src')
-rw-r--r-- | src/widget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/widget.cpp b/src/widget.cpp index 4b215c346..81a776045 100644 --- a/src/widget.cpp +++ b/src/widget.cpp @@ -2420,6 +2420,7 @@ void NWidgetLeaf::Draw(const Window *w) default: NOT_REACHED(); } DrawImageButtons(r, WWT_PUSHIMGBTN, this->colour, clicked, sprite); + break; } case WWT_LABEL: |