aboutsummaryrefslogtreecommitdiff
path: root/biology/lagan/files/patch-src__glocal__rightinfluence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'biology/lagan/files/patch-src__glocal__rightinfluence.cpp')
-rw-r--r--biology/lagan/files/patch-src__glocal__rightinfluence.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/biology/lagan/files/patch-src__glocal__rightinfluence.cpp b/biology/lagan/files/patch-src__glocal__rightinfluence.cpp
deleted file mode 100644
index dd8edd2e0350..000000000000
--- a/biology/lagan/files/patch-src__glocal__rightinfluence.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/glocal/rightinfluence.cpp.orig 2006-09-14 20:40:19 UTC
-+++ src/glocal/rightinfluence.cpp
-@@ -1,6 +1,6 @@
- #include <rightinfluence.h>
-
--Fragment origin, end;
-+Fragment origin, my_end;
-
- // Sets the first default owner of the whole region
- void initRI(RI *RightInfluence, long long int scoreIndex) {
-@@ -18,17 +18,17 @@ void initRI(RI *RightInfluence, long lon
-
- // hack to aid winner selection
- origin.score = -1;
-- end.score = -2;
-- origin.totalScore = end.totalScore = 0;
-+ my_end.score = -2;
-+ origin.totalScore = my_end.totalScore = 0;
-
- // will win against anyone
-- end.seq1End = 0; end.seq2End = 0;
-- end.seq1Start = 0; end.seq2Start = 0;
-+ my_end.seq1End = 0; my_end.seq2End = 0;
-+ my_end.seq1Start = 0; my_end.seq2Start = 0;
-
- origin.back = NULL;
-
- RightInfluence->act[-INF] = &origin;
-- RightInfluence->act[+INF] = &end;
-+ RightInfluence->act[+INF] = &my_end;
- }
-
-