Fix coding style

master
Perttu Ahola 2014-10-19 17:37:33 +03:00
parent bc4ac09c1a
commit 3e84167b94
2 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@ public:
if(!front_def)
throw Exception(ss_()+"Undefined voxel: front="+itos(front.getId()));
/*if(!back_def){
return false;
return false;
}*/
else if(back_def->face_draw_type == interface::FaceDrawType::NEVER){
return false;

View File

@ -28,7 +28,7 @@ ss_ VoxelName::dump() const
os<<"VoxelName(";
os<<"block_name="<<block_name;
os<<", segment=("<<(int)segment_x<<","<<(int)segment_y<<","
<<(int)segment_z<<")";
<<(int)segment_z<<")";
os<<", rotation_primary="<<(int)rotation_primary;
os<<", rotation_secondary="<<(int)rotation_secondary;
os<<")";
@ -79,7 +79,7 @@ struct CVoxelRegistry: public VoxelRegistry
VoxelTypeId id = m_defs.size();
if(def.id != VOXELTYPEID_UNDEFINED && id != def.id)
throw Exception(ss_()+"add_voxel(): def.id="+itos(def.id)+
"; should be "+itos(id));
"; should be "+itos(id));
// NOTE: This invalidates all previous pointers to cache entries that
// were given out
m_defs.resize(id + 1);