From 71267055e4b6eb1e4ca74117ce8c35c9bf4189f9 Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Sun, 29 Jan 2006 11:49:22 +0000 Subject: - Update to 0.97 PR: ports/92482 Submitted by: Jose Alonso Cardenas Marquez (maintainer) --- games/ceferino/files/patch-src_nivel.cc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 games/ceferino/files/patch-src_nivel.cc (limited to 'games/ceferino/files/patch-src_nivel.cc') diff --git a/games/ceferino/files/patch-src_nivel.cc b/games/ceferino/files/patch-src_nivel.cc new file mode 100644 index 000000000000..39bf5a35f8a9 --- /dev/null +++ b/games/ceferino/files/patch-src_nivel.cc @@ -0,0 +1,26 @@ +--- 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); + } + -- cgit v1.2.3