Skip to content

Commit

Permalink
Fixed #157.
Browse files Browse the repository at this point in the history
  • Loading branch information
smudrak committed Dec 3, 2019
1 parent 8a2b0b0 commit 0312b1d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions thexpmodel.cxx
Expand Up @@ -345,6 +345,14 @@ void thexpmodel::export_3d_file(class thdatabase * dbp)
if (!tmps->is_temporary())
img_write_item(pimg, img_LABEL, x_exp, stnbuf,
dbp->db1d.station_vec[i].x, dbp->db1d.station_vec[i].y, dbp->db1d.station_vec[i].z);
else {
x_exp |= img_SFLAG_ANON;
if (tmps->temps == TT_TEMPSTATION_WALL)
x_exp |= img_SFLAG_WALL;
img_write_item(pimg, img_LABEL, x_exp, "",
dbp->db1d.station_vec[i].x, dbp->db1d.station_vec[i].y, dbp->db1d.station_vec[i].z);

}
}
}

Expand Down

0 comments on commit 0312b1d

Please sign in to comment.