aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/archetype/archetype.h
diff options
context:
space:
mode:
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);