fix error message to display the numbers that actually caused the problem

This commit is contained in:
David Rose 2007-11-09 21:38:13 +00:00
parent 945d1c27cf
commit 711e1faaa6
1 changed files with 2 additions and 2 deletions

View File

@ -338,8 +338,8 @@ finish_send_update(DCPacker &packer) {
if (packer.had_range_error()) {
ostringstream error;
error << "Node position out of range for DC file: "
<< _node_path << " pos = " << _node_path.get_pos()
<< " hpr = " << _node_path.get_hpr();
<< _node_path << " pos = " << _store_xyz
<< " hpr = " << _store_hpr;
nassert_raise(error.str());
} else {