Changeset 200 for trunk/src/formats/md3_loader.cc
- Timestamp:
- 08/11/13 18:06:12 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/formats/md3_loader.cc
r198 r200 8 8 9 9 #include <glm/gtc/constants.hpp> 10 #include <glm/gtx/string_cast.hpp>11 10 #include "nv/logging.hh" 12 11 #include <cstring> … … 457 456 { 458 457 const md3_surface_t& surface = md3->surfaces[i]; 459 const sint32 vcount = surface.header.num_verts;458 const uint32 vcount = static_cast< uint32 >( surface.header.num_verts ); 460 459 t.reserve( t.size() + vcount ); 461 for ( sint32 j = 0; j < vcount; ++j )460 for (uint32 j = 0; j < vcount; ++j ) 462 461 { 463 462 t.push_back( md3_texcoord( surface.st[j] ) );
Note: See TracChangeset
for help on using the changeset viewer.