aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.h
diff options
context:
space:
mode:
authorSven Hesse2006-04-18 12:39:02 +0000
committerSven Hesse2006-04-18 12:39:02 +0000
commit4d2f4a9f797e8beabad868164b203fbc3e5625e1 (patch)
treea208c555729d846cd71c03684e8126c9f68a3759 /engines/gob/gob.h
parent18cf15ffc3801bc68bcf07708df6c7c260397410 (diff)
downloadscummvm-rg350-4d2f4a9f797e8beabad868164b203fbc3e5625e1.tar.gz
scummvm-rg350-4d2f4a9f797e8beabad868164b203fbc3e5625e1.tar.bz2
scummvm-rg350-4d2f4a9f797e8beabad868164b203fbc3e5625e1.zip
- Closed the stub in Draw_v2::printText()
- Added a language field in GameSettings, so that the texts in Gob2 work for other languages than EN_GRB as well svn-id: r22005
Diffstat (limited to 'engines/gob/gob.h')
-rw-r--r--engines/gob/gob.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gob/gob.h b/engines/gob/gob.h
index 8d2bb1271a..80e45551e2 100644
--- a/engines/gob/gob.h
+++ b/engines/gob/gob.h
@@ -88,7 +88,7 @@ protected:
int init();
public:
- GobEngine(OSystem *syst, uint32 features);
+ GobEngine(OSystem *syst, uint32 features, Common::Language lang);
virtual ~GobEngine();
void shutdown();
@@ -96,6 +96,7 @@ public:
Common::RandomSource _rnd;
int32 _features;
+ Common::Language _language;
bool _copyProtection;
Game *_game;