Skip to content
Snippets Groups Projects
Commit 3e39da3c authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Fixed one more bug that allows 3.3.0.13 files to work again.

Added 10.0.1.2 to the list of "supported" versions.
parent 36ec3e16
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ const unsigned VER_4_2_0_2 = 0x04020002; /*!< NIF Version 4.2.0.2 */
const unsigned VER_4_2_1_0 = 0x04020100; /*!< NIF Version 4.2.1.0 */
const unsigned VER_4_2_2_0 = 0x04020200; /*!< NIF Version 4.2.2.0 */
const unsigned VER_10_0_1_0 = 0x0A000100; /*!< NIF Version 10.0.1.0 */
const unsigned VER_10_0_1_2 = 0x0A000102; /*!< NIF Version 10.0.1.2 */
const unsigned VER_10_1_0_0 = 0x0A010000; /*!< NIF Version 10.1.0.0 */
const unsigned VER_10_1_0_106 = 0x0A01006A; /*!< NIF Version 10.1.0.106 */
const unsigned VER_10_2_0_0 = 0x0A020000; /*!< NIF Version 10.2.0.0 */
......
......@@ -214,7 +214,7 @@ Ref<T> FixLink( const map<unsigned,NiObjectRef> & objects, list<unsigned int> &
link_stack.pop_front();
 
//Check if link is NULL
if ( info.version > VER_3_3_0_13) {
if ( info.version >= VER_3_3_0_13) {
if ( index == 0xFFFFFFFF) {
return NULL;
}
......
......@@ -998,6 +998,7 @@ bool IsSupportedVersion( unsigned int version ) {
case VER_4_2_2_0:
case VER_10_0_1_0:
case VER_10_1_0_0:
case VER_10_0_1_2:
case VER_10_1_0_106:
case VER_10_2_0_0:
case VER_20_0_0_4:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment