From 82151969a7e765675a57233558f4e8009bc3bb07 Mon Sep 17 00:00:00 2001 From: Dirk Meyer Date: Tue, 2 Apr 2002 16:43:40 +0000 Subject: toppler (aka nebulous) is a game where you have to guide a small frog up a tower, avoiding the baddies. You do have a snowball to fire, though. PR: 34119 Submitted by: dom@happygiraffe.net --- games/toppler/files/patch-menu.cc | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 games/toppler/files/patch-menu.cc (limited to 'games/toppler/files/patch-menu.cc') diff --git a/games/toppler/files/patch-menu.cc b/games/toppler/files/patch-menu.cc new file mode 100644 index 000000000000..b85cc1a75a3e --- /dev/null +++ b/games/toppler/files/patch-menu.cc @@ -0,0 +1,30 @@ +--- menu.cc.orig Sat Jan 19 11:08:41 2002 ++++ menu.cc Sat Jan 19 11:11:09 2002 +@@ -10,6 +10,9 @@ + + #include + ++#define SCOREDIR "%SCOREDIR%" ++#define SCOREFILE "%SCOREFILE%" ++ + static unsigned short menupicture, titledata; + static unsigned char currentmission = 0; + +@@ -175,7 +178,7 @@ + static void getscores() { + char n[300]; + +- sprintf(n, "%s/nebulous.hsc", getenv("HOME")); ++ sprintf(n, "%s/%s", SCOREDIR, SCOREFILE); + FILE *f = fopen(n, "rb"); + + if (f) { +@@ -195,7 +198,7 @@ + static void savescores() { + char n[300]; + +- sprintf(n, "%s/nebulous.hsc", getenv("HOME")); ++ sprintf(n, "%s/%s", SCOREDIR, SCOREFILE); + + FILE *f = fopen(n, "r+b"); + -- cgit v1.2.3