diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index 561c84f6..081924b2 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -6,13 +6,19 @@
-
| 4.1 (2015/07/27,Rev.1316) |
+ |
| 4.1 (2015/07/27,Rev.1318) |
Core
- Fixed bug in polymesh normal computation. Added more unittests for normal computation.
- Get rid of some windows preprocessor warnings
+IO
+
+- Options: Fixed bad enum
+
+
+
Build System
- Removed fixbundle calls if not building apps.
diff --git a/src/OpenMesh/Core/IO/Options.hh b/src/OpenMesh/Core/IO/Options.hh
index 2a9f17e9..f2667258 100644
--- a/src/OpenMesh/Core/IO/Options.hh
+++ b/src/OpenMesh/Core/IO/Options.hh
@@ -105,7 +105,7 @@ public:
Binary = 0x0001, ///< Set binary mode for r/w
MSB = 0x0002, ///< Assume big endian byte ordering
LSB = 0x0004, ///< Assume little endian byte ordering
- Swap = 0x0006, ///< Swap byte order in binary mode
+ Swap = 0x0008, ///< Swap byte order in binary mode
VertexNormal = 0x0010, ///< Has (r) / store (w) vertex normals
VertexColor = 0x0020, ///< Has (r) / store (w) vertex colors
VertexTexCoord = 0x0040, ///< Has (r) / store (w) texture coordinates
|