diff -r 17fc8e5991af -r 3e66bf329257 industry_cmd.c --- a/industry_cmd.c Thu Apr 13 17:33:32 2006 +0000 +++ b/industry_cmd.c Fri Apr 14 01:54:07 2006 +0000 @@ -270,8 +270,8 @@ assert(IsTileType(tile, MP_INDUSTRY)); for (iloop = IT_COAL_MINE; iloop < IT_END; iloop += 1) { - if IS_INT_INSIDE(this_type, industry_gfx_Solver[iloop].MinGfx, - industry_gfx_Solver[iloop].MaxGfx) { + if (IS_BYTE_INSIDE(this_type, industry_gfx_Solver[iloop].MinGfx, + industry_gfx_Solver[iloop].MaxGfx)) { return iloop; } } @@ -531,7 +531,7 @@ byte m; switch (GetIndustryGfx(tile)) { - case 174: + case GFX_SUGAR_MINE_SIEVE: if ((_tick_counter & 1) == 0) { m = _m[tile].m3 + 1; @@ -550,7 +550,7 @@ } break; - case 165: + case GFX_TOFFEE_QUARY: if ((_tick_counter & 3) == 0) { m = _m[tile].m3; @@ -568,7 +568,7 @@ } break; - case 162: + case GFX_BUBBLE_CATCHER: if ((_tick_counter&1) == 0) { m = _m[tile].m3; @@ -583,7 +583,7 @@ break; // Sparks on a coal plant - case 10: + case GFX_POWERPLANT_SPARKS: if ((_tick_counter & 3) == 0) { m = _m[tile].m1; if (GB(m, 2, 5) == 6) { @@ -596,7 +596,7 @@ } break; - case 143: + case GFX_TOY_FACTORY: if ((_tick_counter & 1) == 0) { m = _m[tile].m3 + 1; @@ -733,9 +733,9 @@ if (GetIndustryGfx(tile + TileDiffXY(0, 1)) == 24) BuildOilRig(tile); break; - case 143: - case 162: - case 165: + case GFX_TOY_FACTORY: + case GFX_BUBBLE_CATCHER: + case GFX_TOFFEE_QUARY: _m[tile].m3 = 0; SetIndustryAnimationLoop(tile, 0); break;