]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/mesh.cpp
Use standard fixed-size integer types
[libs/gl.git] / source / core / mesh.cpp
index f6a060215692a01f73ba2f849f83cfdc6c82f9b2..371b38b4894a96935cbd2c75326e790e38e45ce6 100644 (file)
@@ -226,9 +226,9 @@ Resource::AsyncLoader *Mesh::load(IO::Seekable &io, const Resources *)
        return new AsyncLoader(*this, io);
 }
 
-UInt64 Mesh::get_data_size() const
+uint64_t Mesh::get_data_size() const
 {
-       UInt64 size = 0;
+       uint64_t size = 0;
        if(vbuf)
                size += vbuf->get_size();
        if(ibuf)