diff options
author | tron <tron@openttd.org> | 2006-02-01 07:36:15 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-02-01 07:36:15 +0000 |
commit | 84fb96fe85e75b038b527471428189170021f8b7 (patch) | |
tree | a7d69d6390e8880d090f15560161694c3ce6126d /industry_gui.c | |
parent | 22dc05faf2219f6e3803f9cbff92249823bb11eb (diff) | |
download | openttd-84fb96fe85e75b038b527471428189170021f8b7.tar.xz |
(svn r3511) More whitespace ([FS#46] by Rubidium)
Diffstat (limited to 'industry_gui.c')
-rw-r--r-- | industry_gui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/industry_gui.c b/industry_gui.c index 3fd0be363..338afc470 100644 --- a/industry_gui.c +++ b/industry_gui.c @@ -332,7 +332,7 @@ static void IndustryViewWndProc(Window *w, WindowEvent *e) case WE_CLICK: { Industry *i; - switch(e->click.widget) { + switch (e->click.widget) { case 5: { int line; int x; @@ -550,7 +550,7 @@ static void MakeSortedIndustryList(void) error("Could not allocate memory for the industry-sorting-list"); FOR_ALL_INDUSTRIES(i) { - if(i->xy) + if (i->xy) _industry_sort[n++] = i->index; } _num_industry_sort = n; @@ -610,7 +610,7 @@ static void IndustryDirectoryWndProc(Window *w, WindowEvent *e) } break; case WE_CLICK: - switch(e->click.widget) { + switch (e->click.widget) { case 3: { _industry_sort_order = _industry_sort_order==0 ? 1 : 0; _industry_sort_dirty = true; |