diff options
author | nemysis <nemysis@FreeBSD.org> | 2013-09-13 04:02:09 +0800 |
---|---|---|
committer | nemysis <nemysis@FreeBSD.org> | 2013-09-13 04:02:09 +0800 |
commit | ab6c33bcd3d3c8fa69e12169749a0bfdea9f173c (patch) | |
tree | f762af4fe578c3d7ff227c587d952915698e36a0 | |
parent | 799771978b5f9fe3b8fb5eb8f32e4b751d207e93 (diff) | |
download | freebsd-ports-gnome-ab6c33bcd3d3c8fa69e12169749a0bfdea9f173c.tar.gz freebsd-ports-gnome-ab6c33bcd3d3c8fa69e12169749a0bfdea9f173c.tar.zst freebsd-ports-gnome-ab6c33bcd3d3c8fa69e12169749a0bfdea9f173c.zip |
- Remove file forgotten in last commit
Approved by: wg/pawel (mentors)
-rw-r--r-- | games/xye/files/patch-src_editorsave.cpp | 23 |
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); - |