summaryrefslogtreecommitdiff
path: root/graph_gui.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2005-01-23 23:58:35 +0000
committerdominik <dominik@openttd.org>2005-01-23 23:58:35 +0000
commita94a7b0775b207c3d17b33ee76adc7ec3d59c0ca (patch)
treeccc30bedd6ad1caed0ed2cac2e9686b391436ee0 /graph_gui.c
parentc1db3ea675e31ae2a9ef592836f859b6af3dfa47 (diff)
downloadopenttd-a94a7b0775b207c3d17b33ee76adc7ec3d59c0ca.tar.xz
(svn r1631) A couple of fixes for the signed/unsigned warnings. Only train_cmd.c remains to need fixing...
Diffstat (limited to 'graph_gui.c')
-rw-r--r--graph_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph_gui.c b/graph_gui.c
index 7c82ad708..fdd6a1ee5 100644
--- a/graph_gui.c
+++ b/graph_gui.c
@@ -40,7 +40,7 @@ static void DrawGraph(GraphDrawer *gw)
{
int i,j,k;
- int x,y,old_x,old_y;
+ uint x,y,old_x,old_y;
int color;
int right, bottom;
int num_x, num_dataset;