aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/output.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-03 21:56:09 -0700
committerPaul Gilbert2019-07-06 15:27:09 -0700
commitefdf25b3d28113b01e18ef0c69221194a1100e9e (patch)
treeb602ca9f6b29b4a4ecd4eb4047e5fd1163353047 /engines/glk/alan3/output.cpp
parent0f0c2c97e13d01cd77ba9fb489aec77398ce6945 (diff)
downloadscummvm-rg350-efdf25b3d28113b01e18ef0c69221194a1100e9e.tar.gz
scummvm-rg350-efdf25b3d28113b01e18ef0c69221194a1100e9e.tar.bz2
scummvm-rg350-efdf25b3d28113b01e18ef0c69221194a1100e9e.zip
GLK: ALAN3: Move term.cpp code into glkio.cpp
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) {