aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo
diff options
context:
space:
mode:
authorMax Horn2011-03-30 00:10:25 +0200
committerMax Horn2011-03-30 00:10:25 +0200
commit3be61257d00fa71c422ea1a5f297a657b63309e2 (patch)
treecbd39625c1b1fc04204c88988976866cc87c1c9a /engines/hugo
parent7b47bf4638462d44fb9e11b9f346bc2811f6f1f7 (diff)
downloadscummvm-rg350-3be61257d00fa71c422ea1a5f297a657b63309e2.tar.gz
scummvm-rg350-3be61257d00fa71c422ea1a5f297a657b63309e2.tar.bz2
scummvm-rg350-3be61257d00fa71c422ea1a5f297a657b63309e2.zip
HUGO: Fix cypher fix ;)
Diffstat (limited to 'engines/hugo')
-rw-r--r--engines/hugo/file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp
index 5fd7bac05f..eb9e24181d 100644
--- a/engines/hugo/file.cpp
+++ b/engines/hugo/file.cpp
@@ -49,7 +49,7 @@ namespace Hugo {
namespace {
static const char *s_bootCypher = "Copyright 1992, David P Gray, Gray Design Associates";
-static const int s_bootCypherLen = strlen(s_bootCypher) - 1;
+static const int s_bootCypherLen = sizeof(s_bootCypher) - 2;
}