aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/frotz.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-01-06 14:07:14 -0800
committerPaul Gilbert2019-01-06 14:07:14 -0800
commit302d26bf42a56eb0d9c82b4eabface8736249f64 (patch)
tree7e7cf36352dcd20afdca77d0f45d1e14af3ad24c /engines/glk/frotz/frotz.h
parent8515590b47ca297880df59f81f305b00b7c5384a (diff)
downloadscummvm-rg350-302d26bf42a56eb0d9c82b4eabface8736249f64.tar.gz
scummvm-rg350-302d26bf42a56eb0d9c82b4eabface8736249f64.tar.bz2
scummvm-rg350-302d26bf42a56eb0d9c82b4eabface8736249f64.zip
GLK: FROTZ: Force v6 games to 320x200
As much as I'd like to allow for variable resolution sizes, the graphics in Zork Zero are geared specifically for a 320x200 screen. Maybe in the future I can allow for automatic stretching to fit any screen size, but for now it's more important to get the v6 games working at all
Diffstat (limited to 'engines/glk/frotz/frotz.h')
-rw-r--r--engines/glk/frotz/frotz.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/glk/frotz/frotz.h b/engines/glk/frotz/frotz.h
index b5de82d7f8..8312e16b49 100644
--- a/engines/glk/frotz/frotz.h
+++ b/engines/glk/frotz/frotz.h
@@ -37,6 +37,11 @@ class Frotz : public Processor {
friend class FrotzScreen;
protected:
/**
+ * Setup the video mode
+ */
+ virtual void initGraphicsMode();
+
+ /**
* Create the screen class
*/
virtual Screen *createScreen() override;