diff options
author | Max Horn | 2011-03-30 00:10:25 +0200 |
---|---|---|
committer | Max Horn | 2011-03-30 00:10:25 +0200 |
commit | 3be61257d00fa71c422ea1a5f297a657b63309e2 (patch) | |
tree | cbd39625c1b1fc04204c88988976866cc87c1c9a /engines | |
parent | 7b47bf4638462d44fb9e11b9f346bc2811f6f1f7 (diff) | |
download | scummvm-rg350-3be61257d00fa71c422ea1a5f297a657b63309e2.tar.gz scummvm-rg350-3be61257d00fa71c422ea1a5f297a657b63309e2.tar.bz2 scummvm-rg350-3be61257d00fa71c422ea1a5f297a657b63309e2.zip |
HUGO: Fix cypher fix ;)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hugo/file.cpp | 2 |
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; } |