aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/output.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/alan3/output.cpp')
-rw-r--r--engines/glk/alan3/output.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/engines/glk/alan3/output.cpp b/engines/glk/alan3/output.cpp
index aa699c960c..15d4ff4f04 100644
--- a/engines/glk/alan3/output.cpp
+++ b/engines/glk/alan3/output.cpp
@@ -27,7 +27,6 @@
#include "glk/alan3/memory.h"
#include "glk/alan3/word.h"
#include "glk/alan3/lists.h"
-#include "glk/alan3/term.h"
#include "glk/alan3/syserr.h"
#include "glk/alan3/dictionary.h"
#include "glk/alan3/current.h"
@@ -55,6 +54,18 @@ strid_t logFile;
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
+/*
+ getPageSize()
+
+ Try to get the current page size from the system, else use the ones
+ from the header.
+
+ */
+void getPageSize(void) {
+ pageLength = 0;
+ pageWidth = 0;
+}
+
/*----------------------------------------------------------------------*/
static int updateColumn(int currentColumn, const char *string) {