freebsd-ports/games/toppler/files/patch-menu.cc
Dirk Meyer 82151969a7 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
2002-04-02 16:43:40 +00:00

30 lines
677 B
C++

--- menu.cc.orig Sat Jan 19 11:08:41 2002
+++ menu.cc Sat Jan 19 11:11:09 2002
@@ -10,6 +10,9 @@
#include <stdlib.h>
+#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");