diff --git a/src/ComplexShape.cpp b/src/ComplexShape.cpp
index b27c1d077fd4b8df5d347f18cb112ec29f8d4991..7e2801ab8c9f8ea15f29deb80b9701371bd8164a 100644
--- a/src/ComplexShape.cpp
+++ b/src/ComplexShape.cpp
@@ -344,7 +344,7 @@ void ComplexShape::Merge( const Ref<NiAVObject> & root ) {
 			niTexProp = DynamicCast<NiTexturingProperty>(niProp);
 		}
 
-		if ( niTexProp != NULL ) {
+		if ( niTexProp != NULL && shapeUVs.size() != 0 ) {
 			//Add the UV set to the list for every type of texture slot that uses it
 			for ( int tex = 0; tex < 8; ++tex ) {
 				if ( niTexProp->HasTexture(tex) == true ) {
diff --git a/src/obj/NiSkinData.cpp b/src/obj/NiSkinData.cpp
index efc60f9a85373de6f6fd9d02eb0d782286d83016..24e7619ef8b6a1fc7aea2a6185f9c493f9fbafd3 100644
--- a/src/obj/NiSkinData.cpp
+++ b/src/obj/NiSkinData.cpp
@@ -84,12 +84,12 @@ NiSkinData::NiSkinData( const Ref<NiGeometry> & owner ) NI_SKIN_DATA_CONSTRUCT {
 }
 
 void NiSkinData::NormalizeWeights( unsigned numVertices ) {
-	vector<float> totals(numVertices);
+	vector<double> totals(numVertices);
 	vector<int> counts(numVertices);
 
 	//Set all totals to 1.0 and all counts to 0
 	for ( unsigned v = 0; v < numVertices; ++v ) {
-		totals[v] = 1.0f;
+		totals[v] = 1.0;
 		counts[v] = 0;
 	}
 
@@ -107,14 +107,15 @@ void NiSkinData::NormalizeWeights( unsigned numVertices ) {
 	//Divide all error amounts by the number of bones affecting that vertex to
 	//get the amount of error that should be distributed to each bone.
 	for ( unsigned v = 0; v < numVertices; ++v ) {
-		totals[v] = totals[v] / float(counts[v]);
+		totals[v] = totals[v] / double(counts[v]);
 	}
 
 	//Distribute the calculated error to each weight
 	for ( unsigned b = 0; b < boneList.size(); ++b ) {
 		for ( unsigned w = 0; w < boneList[b].vertexWeights.size(); ++w ) {
 			SkinWeight & sw = boneList[b].vertexWeights[w];
-			sw.weight += totals[sw.index];
+			double temp = double(sw.weight) + totals[sw.index];
+			sw.weight = float(temp);
 		}
 	}	
 }