diff options
author | Max Horn | 2011-03-30 00:21:40 +0200 |
---|---|---|
committer | Max Horn | 2011-03-30 00:21:40 +0200 |
commit | 7c16f9ac3c2a88b8a480d59ada1e433982c9db2e (patch) | |
tree | 4b6e34ce833c7e32c21993b50d5e0a6daaa64a48 /engines/hugo | |
parent | 3be61257d00fa71c422ea1a5f297a657b63309e2 (diff) | |
download | scummvm-rg350-7c16f9ac3c2a88b8a480d59ada1e433982c9db2e.tar.gz scummvm-rg350-7c16f9ac3c2a88b8a480d59ada1e433982c9db2e.tar.bz2 scummvm-rg350-7c16f9ac3c2a88b8a480d59ada1e433982c9db2e.zip |
HUGO: Fix s_bootCypherLen *for real*
Diffstat (limited to 'engines/hugo')
-rw-r--r-- | engines/hugo/file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp index eb9e24181d..a0e3ff05ce 100644 --- a/engines/hugo/file.cpp +++ b/engines/hugo/file.cpp @@ -48,8 +48,8 @@ namespace Hugo { namespace { -static const char *s_bootCypher = "Copyright 1992, David P Gray, Gray Design Associates"; -static const int s_bootCypherLen = sizeof(s_bootCypher) - 2; +static const char s_bootCypher[] = "Copyright 1992, David P Gray, Gray Design Associates"; +static const int s_bootCypherLen = sizeof(s_bootCypher) - 1; } |