From 61ecff3474afa5f811db6d6247b260aa0fe8df08 Mon Sep 17 00:00:00 2001 From: Gargaj Date: Thu, 7 Aug 2014 09:30:20 +0200 Subject: [PATCH] missed one 32/64 type conversion --- code/AssbinExporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/AssbinExporter.cpp b/code/AssbinExporter.cpp index bca9a3975..9322f5047 100644 --- a/code/AssbinExporter.cpp +++ b/code/AssbinExporter.cpp @@ -161,7 +161,7 @@ inline size_t Write(IOStream * stream, const aiQuaternion& v) template <> inline size_t Write(IOStream * stream, const aiVertexWeight& v) { - uint32_t t = Write(stream,v.mVertexId); + size_t t = Write(stream,v.mVertexId); return t+Write(stream,v.mWeight); }