(svn r15672) -Codechange: (left,right,top,bottom)_coord -> coord.(left,right,top,bottom), i.e. use Rect.

This commit is contained in:
rubidium
2009-03-11 17:26:58 +00:00
parent 66e0fcdd01
commit fb2ea6c9ed
4 changed files with 26 additions and 32 deletions

View File

@@ -245,8 +245,8 @@ void SndPlayTileFx(SoundFx sound, TileIndex tile)
void SndPlayVehicleFx(SoundFx sound, const Vehicle *v)
{
SndPlayScreenCoordFx(sound,
v->left_coord, v->right_coord,
v->top_coord, v->top_coord
v->coord.left, v->coord.right,
v->coord.top, v->coord.bottom
);
}