2
0
Эх сурвалжийг харах

corrected M3D_EXP_NOFACE test

contriteobserver 4 жил өмнө
parent
commit
813b64ef52

+ 1 - 1
code/AssetLib/M3D/m3d.h

@@ -5042,7 +5042,7 @@ unsigned char *m3d_save(m3d_t *model, int quality, int flags, unsigned int *size
             ptr += sprintf(ptr, "\r\n");
         }
         /* mathematical shapes face */
-        if (model->numshape != (M3D_INDEX)(flags & M3D_EXP_NOFACE)) {
+        if (model->numshape && (!(flags & M3D_EXP_NOFACE))) {
             for (j = 0; j < model->numshape; j++) {
                 sn = _m3d_safestr(model->shape[j].name, 0);
                 if (!sn) {