[Scummvm-cvs-logs] scummvm master -> 7c16f9ac3c2a88b8a480d59ada1e433982c9db2e

fingolfin max at quendi.de
Wed Mar 30 00:22:48 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7c16f9ac3c HUGO: Fix s_bootCypherLen *for real*


Commit: 7c16f9ac3c2a88b8a480d59ada1e433982c9db2e
    https://github.com/scummvm/scummvm/commit/7c16f9ac3c2a88b8a480d59ada1e433982c9db2e
Author: Max Horn (max at quendi.de)
Date: 2011-03-29T15:21:40-07:00

Commit Message:
HUGO: Fix s_bootCypherLen *for real*

Changed paths:
    engines/hugo/file.cpp



diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp
index eb9e241..a0e3ff0 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;
 }
 
 






More information about the Scummvm-git-logs mailing list