Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Kim
Niflib
Commits
3e39da3c
Commit
3e39da3c
authored
17 years ago
by
Shon Ferguson
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/nif_versions.h
+1
-0
1 addition, 0 deletions
include/nif_versions.h
src/gen/obj_impl.cpp
+1
-1
1 addition, 1 deletion
src/gen/obj_impl.cpp
src/niflib.cpp
+1
-0
1 addition, 0 deletions
src/niflib.cpp
with
3 additions
and
1 deletion
include/nif_versions.h
+
1
−
0
View file @
3e39da3c
...
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
src/gen/obj_impl.cpp
+
1
−
1
View file @
3e39da3c
...
...
@@ -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;
}
...
...
This diff is collapsed.
Click to expand it.
src/niflib.cpp
+
1
−
0
View file @
3e39da3c
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment