summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewgeom.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2011-10-25 21:32:37 +0100
committerChris Campbell <chriscampbell89@gmail.com>2011-10-25 21:33:26 +0100
commitf70a5619b3d577daf08c791974537ce058504465 (patch)
treefa7515e9b19a5e8765d6e619cb8604e0736c5977 /crawl-ref/source/viewgeom.cc
parent8723275b0d317032c8c6ebc4edb0ff1a4a1b5c8e (diff)
downloadcrawl-ref-f70a5619b3d577daf08c791974537ce058504465.tar.gz
crawl-ref-f70a5619b3d577daf08c791974537ce058504465.zip
Remove some more options: classic_hud, classic_item_colours
Diffstat (limited to 'crawl-ref/source/viewgeom.cc')
-rw-r--r--crawl-ref/source/viewgeom.cc17
1 files changed, 4 insertions, 13 deletions
diff --git a/crawl-ref/source/viewgeom.cc b/crawl-ref/source/viewgeom.cc
index 759578c023..fb9b91fdd0 100644
--- a/crawl-ref/source/viewgeom.cc
+++ b/crawl-ref/source/viewgeom.cc
@@ -119,18 +119,10 @@ class _inline_layout : public _layout
if ((viewsz.y % 2) != 1)
--viewsz.y;
- if (Options.classic_hud)
- {
- mlistsz.y = 0;
- _increment(msgsz.y, leftover_y(), MSG_MAX_HEIGHT);
- }
- else
- {
- if (mlistsz.y < MLIST_MIN_HEIGHT)
- _increment(mlistsz.y, leftover_rightcol_y(), MLIST_MIN_HEIGHT);
- _increment(msgsz.y, leftover_y(), MSG_MAX_HEIGHT);
- _increment(mlistsz.y, leftover_rightcol_y(), INT_MAX);
- }
+ if (mlistsz.y < MLIST_MIN_HEIGHT)
+ _increment(mlistsz.y, leftover_rightcol_y(), MLIST_MIN_HEIGHT);
+ _increment(msgsz.y, leftover_y(), MSG_MAX_HEIGHT);
+ _increment(mlistsz.y, leftover_rightcol_y(), INT_MAX);
// Finish off by doing the positions.
if (Options.messages_at_top)
@@ -390,7 +382,6 @@ void crawl_view_geometry::init_geometry()
const _layout* winner = &lay_inline;
if (Options.mlist_allow_alternate_layout
- && !Options.classic_hud
&& lay_mlist.valid)
{
winner = &lay_mlist;