aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/archetype.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-11-02 16:49:00 -0700
committerPaul Gilbert2019-11-11 18:20:29 -0800
commit3165d52a7b586a7b1442ba8ae7e3167d852d220f (patch)
tree49e0474c95440f411f20930719e1d126095cf882 /engines/glk/archetype/archetype.h
parente1911f9aff91a2264b6d05c3fda8505bed07739a (diff)
downloadscummvm-rg350-3165d52a7b586a7b1442ba8ae7e3167d852d220f.tar.gz
scummvm-rg350-3165d52a7b586a7b1442ba8ae7e3167d852d220f.tar.bz2
scummvm-rg350-3165d52a7b586a7b1442ba8ae7e3167d852d220f.zip
GLK: ARCHETYPE: Adding GLK hookups
Diffstat (limited to 'engines/glk/archetype/archetype.h')
-rw-r--r--engines/glk/archetype/archetype.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/glk/archetype/archetype.h b/engines/glk/archetype/archetype.h
index f671df3193..85e3a4e8b3 100644
--- a/engines/glk/archetype/archetype.h
+++ b/engines/glk/archetype/archetype.h
@@ -40,6 +40,7 @@ class Archetype : public GlkAPI {
private:
int _saveSlot;
bool Translating;
+ winid_t _mainWindow;
public:
// keywords.cpp
XArrayType Literals, Vocabulary;
@@ -157,12 +158,12 @@ public:
/**
* Write some text to the screen
*/
- void write(const String &fmt, ...);
+ void write(const String fmt, ...);
/**
* Write a line to the screen
*/
- void writeln(const String &fmt, ...);
+ void writeln(const String fmt, ...);
void writeln() { writeln(""); }
void readln(String &s);