aboutsummaryrefslogtreecommitdiffstats
path: root/games/toppler/files/patch-menu.cc
blob: b85cc1a75a3e3c03e2f79a0d2dca3ce82929eb66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 <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");