summaryrefslogtreecommitdiff
path: root/src/linkgraph/linkgraphschedule.cpp
diff options
context:
space:
mode:
authorfonsinchen <fonsinchen@openttd.org>2013-12-20 14:57:44 +0000
committerfonsinchen <fonsinchen@openttd.org>2013-12-20 14:57:44 +0000
commitec492bfb7700b719e41553417cbe77c5d10549ae (patch)
tree3e32848d29e0a9326bb9ff373a2248fe7239ca68 /src/linkgraph/linkgraphschedule.cpp
parent4818b72c759f3845a28b94d3f1fad9541d4e8304 (diff)
downloadopenttd-ec492bfb7700b719e41553417cbe77c5d10549ae.tar.xz
(svn r26166) -Fix: Scale flows only after mapping to avoid rounding errors.
Diffstat (limited to 'src/linkgraph/linkgraphschedule.cpp')
-rw-r--r--src/linkgraph/linkgraphschedule.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/linkgraph/linkgraphschedule.cpp b/src/linkgraph/linkgraphschedule.cpp
index 366a3c517..f056d7cfc 100644
--- a/src/linkgraph/linkgraphschedule.cpp
+++ b/src/linkgraph/linkgraphschedule.cpp
@@ -146,9 +146,9 @@ LinkGraphSchedule::LinkGraphSchedule()
this->handlers[0] = new InitHandler;
this->handlers[1] = new DemandHandler;
this->handlers[2] = new MCFHandler<MCF1stPass>;
- this->handlers[3] = new FlowMapper;
+ this->handlers[3] = new FlowMapper(false);
this->handlers[4] = new MCFHandler<MCF2ndPass>;
- this->handlers[5] = new FlowMapper;
+ this->handlers[5] = new FlowMapper(true);
}
/**