Remove unused function tmap_info_read_n_d1

This commit is contained in:
Kp 2012-06-30 19:16:55 +00:00
parent ef99951af6
commit 5d80dfb562

View file

@ -111,20 +111,6 @@ int tmap_info_read_n(tmap_info *ti, int n, PHYSFS_file *fp)
return i;
}
int tmap_info_read_n_d1(tmap_info *ti, int n, PHYSFS_file *fp)
{
int i;
for (i = 0; i < n; i++) {
PHYSFSX_fseek(fp, 13, SEEK_CUR);// skip filename
ti[i].flags = PHYSFSX_readByte(fp);
ti[i].lighting = PHYSFSX_readFix(fp);
ti[i].damage = PHYSFSX_readFix(fp);
ti[i].eclip_num = PHYSFSX_readInt(fp);
}
return i;
}
void gamedata_close()
{
free_polygon_models();