diff options
author | Simon Barner <barner@FreeBSD.org> | 2006-02-01 12:08:00 +0000 |
---|---|---|
committer | Simon Barner <barner@FreeBSD.org> | 2006-02-01 12:08:00 +0000 |
commit | f63cee677e1aeca9dd20531daf3bfc33910c7bd2 (patch) | |
tree | 2503fd17575d881611785bf808f0dd3c9895383b /games/ceferino/files | |
parent | a4d4da52b9bbb18a77b3fded696b5f652baa0863 (diff) |
Notes
Diffstat (limited to 'games/ceferino/files')
-rw-r--r-- | games/ceferino/files/patch-src_nivel.cc | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/games/ceferino/files/patch-src_nivel.cc b/games/ceferino/files/patch-src_nivel.cc deleted file mode 100644 index 39bf5a35f8a9..000000000000 --- a/games/ceferino/files/patch-src_nivel.cc +++ /dev/null @@ -1,26 +0,0 @@ ---- src/nivel.cc Sat Jan 28 19:31:44 2006 -+++ src/nivel.cc Sat Jan 28 19:32:49 2006 -@@ -166,7 +166,7 @@ - char tmp[1024]; - - #ifdef WIN32 -- strcpy(tmp, SRC_DIR "/niveles/base.map"); -+ strcpy(tmp, SRC_DIR "/levels/base.map"); - #else - strcpy(tmp, getenv("HOME")); - strcat(tmp, "/"); -@@ -175,12 +175,12 @@ - arch = fopen(tmp, "rb"); - - if (!arch) -- arch = fopen (DATADIR "/niveles/base.map", "rb"); -+ arch = fopen (DATADIR "/levels/base.map", "rb"); - - if (!arch) - { - printf(_("Can't open the file '%s'"), DATADIR\ -- "/niveles/base.map'\n"); -+ "/levels/base.map'\n"); - exit(-1); - } - |