aboutsummaryrefslogtreecommitdiff
path: root/games/xye
diff options
context:
space:
mode:
authorRusmir Dusko <nemysis@FreeBSD.org>2013-09-12 20:02:09 +0000
committerRusmir Dusko <nemysis@FreeBSD.org>2013-09-12 20:02:09 +0000
commitad2167e19273c3be0435ce923a2f64c4b9201a9e (patch)
treef762af4fe578c3d7ff227c587d952915698e36a0 /games/xye
parent49f2f3f3fa42d4462b6c76ca148638a193954913 (diff)
downloadports-ad2167e19273c3be0435ce923a2f64c4b9201a9e.tar.gz
ports-ad2167e19273c3be0435ce923a2f64c4b9201a9e.zip
- Remove file forgotten in last commit
Approved by: wg/pawel (mentors)
Notes
Notes: svn path=/head/; revision=327107
Diffstat (limited to 'games/xye')
-rw-r--r--games/xye/files/patch-src_editorsave.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/games/xye/files/patch-src_editorsave.cpp b/games/xye/files/patch-src_editorsave.cpp
deleted file mode 100644
index 10c019fb0a2f..000000000000
--- a/games/xye/files/patch-src_editorsave.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/editorsave.cpp.orig 2013-01-13 21:51:34.000000000 +0100
-+++ src/editorsave.cpp 2013-01-13 21:50:22.000000000 +0100
-@@ -636,16 +636,16 @@
- }
- saveColorStuff(file, board);
-
-- int i,j;
-+ int k,j;
- file << "\t<ground>\n";
- resetSavedPosition();
-- for (i=0;i<XYE_HORZ;i++) for (j=0;j<XYE_VERT;j++) saveGroundObject(file,editor::board->objects[i][j],i,XYE_VERT-j-1);
-+ for (k=0;k<XYE_HORZ;k++) for (j=0;j<XYE_VERT;j++) saveGroundObject(file,editor::board->objects[k][j],k,XYE_VERT-j-1);
- file << "\t</ground>\n";
- file << "\t<objects>\n";
- resetSavedPosition();
-- for (i=0;i<XYE_HORZ;i++) for (j=0;j<XYE_VERT;j++)
-+ for (k=0;i<XYE_HORZ;k++) for (j=0;j<XYE_VERT;j++)
- {
-- saveNormalObject(file,editor::board->objects[i][j],i,XYE_VERT-j-1);
-+ saveNormalObject(file,editor::board->objects[k][j],k,XYE_VERT-j-1);
- }
- savePortals( file, editor::board);
-