diff options
-rw-r--r-- | src/bridge_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bridge_gui.cpp b/src/bridge_gui.cpp index 745d96025..0ff0ac895 100644 --- a/src/bridge_gui.cpp +++ b/src/bridge_gui.cpp @@ -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); |