(svn r21501) -Fix (rnotlongago): guess what was complaining this time?

This commit is contained in:
rubidium
2010-12-13 15:34:30 +00:00
parent 6892cc8a60
commit 20364bcefa
2 changed files with 6 additions and 6 deletions

View File

@@ -1764,8 +1764,8 @@ static void SetSelectionTilesDirty()
/* a_size, b_size describe a rectangle with rotated coordinates */
int a_size = x_size + y_size, b_size = x_size - y_size;
int interval_a = a_size < 0 ? -TILE_SIZE : TILE_SIZE;
int interval_b = b_size < 0 ? -TILE_SIZE : TILE_SIZE;
int interval_a = a_size < 0 ? -(int)TILE_SIZE : TILE_SIZE;
int interval_b = b_size < 0 ? -(int)TILE_SIZE : TILE_SIZE;
for (int a = -interval_a; a != a_size + interval_a; a += interval_a) {
for (int b = -interval_b; b != b_size + interval_b; b += interval_b) {