Browse Source

- Taml serialization WIP.

MelvMay-GG 12 years ago
parent
commit
947ef47
1 changed files with 1 additions and 1 deletions
  1. 1 1
      engine/source/persistence/taml/tamlCustom.h

+ 1 - 1
engine/source/persistence/taml/tamlCustom.h

@@ -497,7 +497,7 @@ public:
 
     inline void setNodeText( const char* pNodeText )
     {
-        AssertFatal( dStrlen( pNodeText ) >= MAX_TAML_NODE_FIELDVALUE_LENGTH, "Custom node text is too long." );
+        AssertFatal( dStrlen( pNodeText ) < MAX_TAML_NODE_FIELDVALUE_LENGTH, "Custom node text is too long." );
 
         mNodeText.set( StringTable->EmptyString, pNodeText );
     }