diff options
author | zuu <zuu@openttd.org> | 2013-07-21 17:14:35 +0000 |
---|---|---|
committer | zuu <zuu@openttd.org> | 2013-07-21 17:14:35 +0000 |
commit | 789b4e320bf229219213233bdfbc2b5b95fa2e41 (patch) | |
tree | 2d88604e405107d9cbe87c3abcdeda1c8ecf0de2 | |
parent | 4f6d19465b3a04446aec798c35b2387c7a5b6777 (diff) | |
download | openttd-789b4e320bf229219213233bdfbc2b5b95fa2e41.tar.xz |
(svn r25624) -Fix (r25620, r25623): Silence warnings
-rw-r--r-- | src/goal_gui.cpp | 1 | ||||
-rw-r--r-- | src/story.cpp | 1 | ||||
-rw-r--r-- | src/story_gui.cpp | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/goal_gui.cpp b/src/goal_gui.cpp index 7c250558f..f401b6dc1 100644 --- a/src/goal_gui.cpp +++ b/src/goal_gui.cpp @@ -237,7 +237,6 @@ struct GoalListWindow : public Window { void DrawListColumn(GoalColumn column, NWidgetBase *wid, uint progress_col_width) const { /* Get column draw area. */ - bool rtl = _current_text_dir == TD_RTL; int y = wid->pos_y + WD_FRAMERECT_TOP; int x = wid->pos_x + WD_FRAMERECT_LEFT; int right = x + wid->current_x - WD_FRAMERECT_RIGHT; diff --git a/src/story.cpp b/src/story.cpp index e4b1aa59e..b85ce20ac 100644 --- a/src/story.cpp +++ b/src/story.cpp @@ -88,6 +88,7 @@ static void UpdateElement(StoryPageElement &pe, TileIndex tile, uint32 reference case SPET_GOAL: pe.referenced_id = (GoalID)reference; break; + default: NOT_REACHED(); } } diff --git a/src/story_gui.cpp b/src/story_gui.cpp index 8ce0dcb82..e2a325911 100644 --- a/src/story_gui.cpp +++ b/src/story_gui.cpp @@ -535,6 +535,8 @@ public: SetDParamStr(0, pe->text); DrawActionElement(y_offset, right - x, line_height, GetPageElementSprite(*pe)); break; + + default: NOT_REACHED(); } } |