Changeset - r9320:76bc3b0d5ae5
[Not reviewed]
master
0 1 0
glx - 16 years ago 2008-05-20 21:55:45
glx@openttd.org
(svn r13202) -Fix (r13149): MSVC signed/unsigned warning
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/bridge_gui.cpp
Show inline comments
 
@@ -183,7 +183,7 @@ public:
 

	
 
		uint y = this->widget[BBSW_BRIDGE_LIST].top + 2;
 

	
 
		for (uint i = this->vscroll.pos; (i < (this->vscroll.cap + this->vscroll.pos)) && (i < this->bridges->list_length); i++) {
 
		for (int i = this->vscroll.pos; (i < (this->vscroll.cap + this->vscroll.pos)) && (i < this->bridges->list_length); i++) {
 
			const BridgeSpec *b = this->bridges->sort_list[i].spec;
 

	
 
			SetDParam(2, this->bridges->sort_list[i].cost);
0 comments (0 inline, 0 general)