aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorD G Turner2012-03-26 01:07:10 +0100
committerD G Turner2012-03-26 01:09:15 +0100
commitbbe686c507dc9d1b0ae9fbc09e72717765c7136c (patch)
tree88d97e36d6669551076ea1ea2f296a80060c584d /engines
parent371bc1ddc123984b5334a6bbfc105493306ffc3b (diff)
downloadscummvm-rg350-bbe686c507dc9d1b0ae9fbc09e72717765c7136c.tar.gz
scummvm-rg350-bbe686c507dc9d1b0ae9fbc09e72717765c7136c.tar.bz2
scummvm-rg350-bbe686c507dc9d1b0ae9fbc09e72717765c7136c.zip
AGI: Fix compilation on NDS, broken due to predictive text changes.
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/agi.cpp4
-rw-r--r--engines/agi/agi.h1
2 files changed, 3 insertions, 2 deletions
diff --git a/engines/agi/agi.cpp b/engines/agi/agi.cpp
index 8218d82a05..137d6073d1 100644
--- a/engines/agi/agi.cpp
+++ b/engines/agi/agi.cpp
@@ -411,7 +411,9 @@ int AgiEngine::agiInit() {
#ifdef __DS__
// Normally, the engine loads the predictive text dictionary when the predictive dialog
// is shown. On the DS version, the word completion feature needs the dictionary too.
- loadDict();
+
+ // FIXME - loadDict() no long exists in AGI as this has been moved to within the
+ // GUI Predictive Dialog, but DS Word Completion is probably broken due to this...
#endif
_egoHoldKey = false;
diff --git a/engines/agi/agi.h b/engines/agi/agi.h
index 1e2b617040..cebee421ef 100644
--- a/engines/agi/agi.h
+++ b/engines/agi/agi.h
@@ -1085,7 +1085,6 @@ private:
void printText2(int l, const char *msg, int foff, int xoff, int yoff, int len, int fg, int bg, bool checkerboard = false);
void blitTextbox(const char *p, int y, int x, int len);
void eraseTextbox();
- void loadDict();
bool matchWord();
public: