diff options
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; } |