aboutsummaryrefslogtreecommitdiff
path: root/engines/cryomni3d/versailles/engine.h
diff options
context:
space:
mode:
authorLe Philousophe2019-06-23 08:58:31 +0200
committerLe Philousophe2019-07-05 07:40:29 +0200
commit57b74a2773ae083121e0e621eb555c19d666ea2a (patch)
treebae1302fff544b98167766ed7e3b359a30107760 /engines/cryomni3d/versailles/engine.h
parentc24304a78b8f04b36be28877e29135341a2953e4 (diff)
downloadscummvm-rg350-57b74a2773ae083121e0e621eb555c19d666ea2a.tar.gz
scummvm-rg350-57b74a2773ae083121e0e621eb555c19d666ea2a.tar.bz2
scummvm-rg350-57b74a2773ae083121e0e621eb555c19d666ea2a.zip
CRYOMNI3D: Load all characters and not only the letters
That will be useful for i18n. Let's suppose all the versions have all the characters.
Diffstat (limited to 'engines/cryomni3d/versailles/engine.h')
-rw-r--r--engines/cryomni3d/versailles/engine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cryomni3d/versailles/engine.h b/engines/cryomni3d/versailles/engine.h
index 83beddbd4b..ff00dfd385 100644
--- a/engines/cryomni3d/versailles/engine.h
+++ b/engines/cryomni3d/versailles/engine.h
@@ -513,7 +513,7 @@ private:
static const char *kEpigraphPassword;
bool handleEpigraph(ZonFixedImage *fimg);
void drawEpigraphLetters(Graphics::ManagedSurface &surface,
- const Graphics::Surface(&bmpLetters)[26], const Common::String &letters);
+ const Graphics::Surface(&bmpLetters)[28], const Common::String &letters);
IMG_CB(45130);
IMG_CB(45270);
IMG_CB(45270b);
@@ -536,7 +536,7 @@ private:
static const uint16 kBombLettersPos[2][kBombPasswordMaxLength][2];
static const char *kBombPassword;
bool handleBomb(ZonFixedImage *fimg);
- void drawBombLetters(Graphics::ManagedSurface &surface, const Graphics::Surface(&bmpLetters)[26],
+ void drawBombLetters(Graphics::ManagedSurface &surface, const Graphics::Surface(&bmpLetters)[28],
const uint kBombPasswordLength,
const unsigned char (&bombPossibilites)[kBombPasswordMaxLength][5],
const unsigned char (&bombCurrentLetters)[kBombPasswordMaxLength]);