blob: 102801d852e0e2a85f60b530459aa00bff8f0b31 (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
--- rt_main.c.orig 2003-06-19 23:03:34.000000000 -0400
+++ rt_main.c 2003-06-19 23:04:49.000000000 -0400
@@ -763,9 +763,9 @@
// Normal ROTT wads
#if (SHAREWARE)
- newargs [argnum++] = "huntbgin.wad";
+ newargs [argnum++] = DATADIR "huntbgin.wad";
#else
- newargs [argnum++] = "darkwar.wad";
+ newargs [argnum++] = DATADIR "darkwar.wad";
#endif
// newargs [argnum++] = "credits.wad";
@@ -785,7 +785,7 @@
}
else
{
- newargs [argnum++] = "remote1.rts";
+ newargs [argnum++] = DATADIR "remote1.rts";
}
newargs [argnum++] = NULL;
--- _rt_ted.h.orig 2003-06-19 23:15:26.000000000 -0400
+++ _rt_ted.h 2003-06-19 23:15:54.000000000 -0400
@@ -84,17 +84,17 @@
#define MAXSILLYSTRINGS 32
#if (SHAREWARE==0)
- #define STANDARDGAMELEVELS ("DARKWAR.RTL")
+ #define STANDARDGAMELEVELS (DATADIR "DARKWAR.RTL")
#if (SUPERROTT==1)
- #define STANDARDBATTLELEVELS ("ROTTCD.RTC")
+ #define STANDARDBATTLELEVELS (DATADIR "ROTTCD.RTC")
#elif (SITELICENSE==1)
- #define STANDARDBATTLELEVELS ("ROTTSITE.RTC")
+ #define STANDARDBATTLELEVELS (DATADIR "ROTTSITE.RTC")
#else
- #define STANDARDBATTLELEVELS ("DARKWAR.RTC")
+ #define STANDARDBATTLELEVELS (DATADIR "DARKWAR.RTC")
#endif
#else
- #define STANDARDGAMELEVELS ("HUNTBGIN.RTL")
- #define STANDARDBATTLELEVELS ("HUNTBGIN.RTC")
+ #define STANDARDGAMELEVELS (DATADIR "HUNTBGIN.RTL")
+ #define STANDARDBATTLELEVELS (DATADIR "HUNTBGIN.RTC")
#endif
|