diff options
author | Rusmir Dusko <nemysis@FreeBSD.org> | 2013-09-12 20:02:09 +0000 |
---|---|---|
committer | Rusmir Dusko <nemysis@FreeBSD.org> | 2013-09-12 20:02:09 +0000 |
commit | ad2167e19273c3be0435ce923a2f64c4b9201a9e (patch) | |
tree | f762af4fe578c3d7ff227c587d952915698e36a0 | |
parent | 49f2f3f3fa42d4462b6c76ca148638a193954913 (diff) |
Notes
-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); - |