From 7c16f9ac3c2a88b8a480d59ada1e433982c9db2e Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 30 Mar 2011 00:21:40 +0200 Subject: HUGO: Fix s_bootCypherLen *for real* --- engines/hugo/file.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') 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; } -- cgit v1.2.3