No need to cast.

SVN revision: 14294
This commit is contained in:
sebastid 2005-04-22 07:54:08 +00:00 committed by sebastid
parent 24c062baa0
commit 978b5bdf9a
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ e_desk_at_xy_get(E_Zone *zone, int x, int y)
if ((x >= zone->desk_x_count) || (y >= zone->desk_y_count))
return NULL;
return (E_Desk *)zone->desks[x + (y * zone->desk_x_count)];
return zone->desks[x + (y * zone->desk_x_count)];
}
void