summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/z-term.c3
-rw-r--r--src/z-term.h4
2 files changed, 0 insertions, 7 deletions
diff --git a/src/z-term.c b/src/z-term.c
index 8a1732c3..0c4ba039 100644
--- a/src/z-term.c
+++ b/src/z-term.c
@@ -1658,9 +1658,6 @@ errr Term_resize(int w, int h)
term_win *hold_scr;
term_win *hold_mem;
- /* Resizing is forbidden */
- if (Term->fixed_shape) return ( -1);
-
/* Ignore illegal changes */
if ((w < 1) || (h < 1)) return ( -1);
diff --git a/src/z-term.h b/src/z-term.h
index 241e3d76..b1d81450 100644
--- a/src/z-term.h
+++ b/src/z-term.h
@@ -65,9 +65,6 @@ struct term_win
* - Flag "total_erase"
* This "term" should be fully erased
*
- * - Flag "fixed_shape"
- * This "term" is not allowed to resize
- *
* - Flag "icky_corner"
* This "term" has an "icky" corner grid
*
@@ -136,7 +133,6 @@ struct term
bool_ active_flag;
bool_ mapped_flag;
bool_ total_erase;
- bool_ fixed_shape;
bool_ icky_corner;
bool_ soft_cursor;
bool_ always_text;