diff options
Diffstat (limited to 'games/groundhog')
-rw-r--r-- | games/groundhog/files/patch-src-highscore.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/games/groundhog/files/patch-src-highscore.cc b/games/groundhog/files/patch-src-highscore.cc index 334843c380c6..c6f9eb10531e 100644 --- a/games/groundhog/files/patch-src-highscore.cc +++ b/games/groundhog/files/patch-src-highscore.cc @@ -1,13 +1,11 @@ --- src/highscore.cc/old Sat May 4 23:43:58 2002 +++ src/highscore.cc Thu May 23 14:10:49 2002 -@@ -26,6 +26,10 @@ +@@ -26,6 +26,8 @@ std::string filename = getenv("HOME"); filename += "/.groundhog.highscore"; std::ifstream in(filename.c_str()); -+ if (in==NULL) { -+ cout << "Couldn't open highscore file (this is normal the first time the game is ran).\n"; ++ if (in==NULL) + return; -+ } in >> _beginner >> _intermediate >> _expert; } |