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
3ceace48
Commit
3ceace48
authored
16 years ago
by
Tazpn
Browse files
Options
Downloads
Patches
Plain Diff
niflib: Add atlantica to the supported version list
parent
c4b12611
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/NIF_IO.cpp
+2
-0
2 additions, 0 deletions
src/NIF_IO.cpp
src/niflib.cpp
+1
-0
1 addition, 0 deletions
src/niflib.cpp
with
4 additions
and
0 deletions
include/nif_versions.h
+
1
−
0
View file @
3ceace48
...
...
@@ -27,6 +27,7 @@ const unsigned VER_20_0_0_4 = 0x14000004; /*!< NIF Version 20.0.0.4 */
const
unsigned
VER_20_0_0_5
=
0x14000005
;
/*!< NIF Version 20.0.0.4 */
const
unsigned
VER_20_1_0_3
=
0x14010003
;
/*!< NIF Version 20.1.0.3 */
const
unsigned
VER_20_2_0_7
=
0x14020007
;
/*!< NIF Version 20.2.0.7 */
const
unsigned
VER_20_2_0_8
=
0x14020008
;
/*!< NIF Version 20.2.0.7 */
const
unsigned
VER_20_3_0_3
=
0x14030003
;
/*!< NIF Version 20.3.0.3 */
const
unsigned
VER_20_3_0_6
=
0x14030006
;
/*!< NIF Version 20.3.0.6 */
const
unsigned
VER_UNSUPPORTED
=
0xFFFFFFFF
;
/*!< Unsupported NIF Version */
...
...
This diff is collapsed.
Click to expand it.
src/NIF_IO.cpp
+
2
−
0
View file @
3ceace48
...
...
@@ -357,6 +357,8 @@ void NifStream( HeaderString & val, istream& in, NifInfo & info ) {
ver_start
=
32
;
}
else
if
(
val
.
header
.
substr
(
0
,
20
)
==
"Gamebryo File Format"
)
{
ver_start
=
30
;
}
else
if
(
val
.
header
.
substr
(
0
,
6
)
==
"NDSNIF"
)
{
ver_start
=
30
;
}
else
{
//Not a NIF file
info
.
version
=
VER_INVALID
;
...
...
This diff is collapsed.
Click to expand it.
src/niflib.cpp
+
1
−
0
View file @
3ceace48
...
...
@@ -1093,6 +1093,7 @@ bool IsSupportedVersion( unsigned int version ) {
case
VER_20_0_0_5
:
case
VER_20_1_0_3
:
case
VER_20_2_0_7
:
case
VER_20_2_0_8
:
case
VER_20_3_0_3
:
case
VER_20_3_0_6
:
return
true
;
...
...
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