From 90faef888782fe9730e5cc33bec77e12eade36ad Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Wed, 21 Aug 2013 04:31:23 +0000
Subject: [PATCH] fbx export edge smoothing was negated

---
 io_scene_fbx/export_fbx.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index c4628e36f..6b04da9c7 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1505,13 +1505,13 @@ def save_single(operator, scene, filepath="",
             i = -1
             for ed in me_edges:
                 if i == -1:
-                    fw('%i' % (ed.use_edge_sharp))
+                    fw('%i' % (not ed.use_edge_sharp))
                     i = 0
                 else:
                     if i == 54:
                         fw('\n\t\t\t ')
                         i = 0
-                    fw(',%i' % ed.use_edge_sharp)
+                    fw(',%i' % (not ed.use_edge_sharp))
                 i += 1
 
             fw('\n\t\t}')
-- 
GitLab