diff -r 4f0dae004e46 -r 1bf6a62b0fcb src/bridge_gui.cpp --- a/src/bridge_gui.cpp Thu Jun 21 17:18:33 2007 +0000 +++ b/src/bridge_gui.cpp Thu Jun 21 17:25:17 2007 +0000 @@ -47,7 +47,7 @@ for (uint i = 0; i < 4 && i + w->vscroll.pos < _bridgedata.count; i++) { const Bridge *b = &_bridge[_bridgedata.indexes[i + w->vscroll.pos]]; - SetDParamMoney(2, _bridgedata.costs[i + w->vscroll.pos]); + SetDParam(2, _bridgedata.costs[i + w->vscroll.pos]); SetDParam(1, b->speed * 10 / 16); SetDParam(0, b->material); DrawSprite(b->sprite, b->pal, 3, 15 + i * 22);