Changeset - r20446:38cae157bb3b
[Not reviewed]
master
0 1 0
rubidium - 11 years ago 2013-06-25 18:52:12
rubidium@openttd.org
(svn r25461) -Fix: MSVC compiler warning
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/station_cmd.cpp
Show inline comments
 
@@ -4224,8 +4224,8 @@ void FlowStatMap::FinalizeLocalConsumpti
 
			fs.ChangeShare(INVALID_STATION, -INT_MAX);
 
			local -= INT_MAX;
 
		}
 
		fs.ChangeShare(self, (int)-local);
 
		fs.ChangeShare(INVALID_STATION, (int)-local);
 
		fs.ChangeShare(self, -(int)local);
 
		fs.ChangeShare(INVALID_STATION, -(int)local);
 

	
 
		/* If the local share is used up there must be a share for some
 
		 * remote station. */
0 comments (0 inline, 0 general)