diff options
Diffstat (limited to 'engines/hugo/file.cpp')
-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; } |