(svn r5652) -Fix [SF 1480301]: Industry production change button doesn't work
This commit is contained in:
		| @@ -345,7 +345,7 @@ static void IndustryViewWndProc(Window *w, WindowEvent *e) | |||||||
|  |  | ||||||
| 			x = e->click.pt.x; | 			x = e->click.pt.x; | ||||||
| 			line = (e->click.pt.y - 127) / 10; | 			line = (e->click.pt.y - 127) / 10; | ||||||
| 			if (e->click.pt.y >= 127 && IS_INT_INSIDE(line, 0, 2) && i->produced_cargo[line]) { | 			if (e->click.pt.y >= 127 && IS_INT_INSIDE(line, 0, 2) && i->produced_cargo[line] != CT_INVALID) { | ||||||
| 				if (IS_INT_INSIDE(x, 5, 25) ) { | 				if (IS_INT_INSIDE(x, 5, 25) ) { | ||||||
| 					// clicked buttons | 					// clicked buttons | ||||||
| 					if (x < 15) { | 					if (x < 15) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Darkvater
					Darkvater