Ignore:
Timestamp:
07/21/15 13:31:23 (10 years ago)
Author:
epyon
Message:
  • hash storage type
  • string hash storage type
  • several minor fixes
  • more cleanups needed
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gfx/skeletal_mesh.cc

    r430 r431  
    177177        {
    178178                const data_channel_set* bone = (*bones)[ bi ];
    179                 bone_names[ bone->get_name() ] = bi;
     179                bone_names[ bone->get_name().value() ] = bi;
    180180                m_offsets[bi] = bone->get_transform();
    181181        }
     
    186186                sint16 bone_id = -1;
    187187
    188                 auto bi = bone_names.find( node->get_name() );
     188                auto bi = bone_names.find( node->get_name().value() );
    189189                if ( bi != bone_names.end() )
    190190                {
Note: See TracChangeset for help on using the changeset viewer.