diff options
author | tron <tron@openttd.org> | 2004-12-02 22:53:07 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2004-12-02 22:53:07 +0000 |
commit | fdb447ac55fc7faffe6b7477a4ecfa7733b9a03d (patch) | |
tree | 822a14c0bf1d92e45c85d4ce62bc58b7b6cef6c7 /bridge_gui.c | |
parent | 2c88f958edc2ad87c92ac23b727e27e2ddbe710b (diff) | |
download | openttd-fdb447ac55fc7faffe6b7477a4ecfa7733b9a03d.tar.xz |
(svn r901) Small step in the process to clean up the DPARAM mess:
- reduce to 2 sizes (*DParam64 for 64bit values, *DParam for the rest)
- use inline functions instead of macros
- add assert()s to check for buffer overruns
Diffstat (limited to 'bridge_gui.c')
-rw-r--r-- | bridge_gui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bridge_gui.c b/bridge_gui.c index f78d49d90..731d217d2 100644 --- a/bridge_gui.c +++ b/bridge_gui.c @@ -46,9 +46,9 @@ static void BuildBridgeWndProc(Window *w, WindowEvent *e) for(i=0; i < 4 && i + w->vscroll.pos < _bridge.count; i++) { int ind = _bridge.indexes[i + w->vscroll.pos]; - SET_DPARAM32(2, _bridge.costs[i + w->vscroll.pos]); - SET_DPARAM16(1, (_bridge_speeds[ind] >> 4) * 10); - SET_DPARAM16(0, _bridge_material[ind]); + SetDParam(2, _bridge.costs[i + w->vscroll.pos]); + SetDParam(1, (_bridge_speeds[ind] >> 4) * 10); + SetDParam(0, _bridge_material[ind]); DrawSprite(_bridge_sprites[ind], 3, 15 + i * 22); DrawString(44, 15 + i*22 , STR_500D, 0); |