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
944472d7
Commit
944472d7
authored
18 years ago
by
Tazpn
Browse files
Options
Downloads
Patches
Plain Diff
Missed files from last commit around fixing user version related crashes in Oblivion.
parent
f1e8cd49
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gen/Header.cpp
+4
-4
4 additions, 4 deletions
gen/Header.cpp
gen/Header.h
+3
-2
3 additions, 2 deletions
gen/Header.h
with
7 additions
and
6 deletions
gen/Header.cpp
+
4
−
4
View file @
944472d7
...
...
@@ -5,7 +5,7 @@ All rights reserved. Please see niflib.h for licence. */
using
namespace
Niflib
;
//Constructor
Header
::
Header
()
:
version
((
uint
)
0x04000002
),
endianType
((
byte
)
1
),
userVersion
((
uint
)
0
),
numBlocks
((
uint
)
0
),
unknownInt1
((
uint
)
1
),
u
nknownInt3
((
uint
)
0
),
numBlockTypes
((
ushort
)
0
),
unknownInt2
((
uint
)
0
)
{};
Header
::
Header
()
:
version
((
uint
)
0x04000002
),
endianType
((
byte
)
1
),
userVersion
((
uint
)
0
),
numBlocks
((
uint
)
0
),
unknownInt1
((
uint
)
1
),
u
serVersion2
((
uint
)
0
),
numBlockTypes
((
ushort
)
0
),
unknownInt2
((
uint
)
0
)
{};
//Destructor
Header
::~
Header
()
{};
...
...
@@ -24,7 +24,7 @@ void Header::Read( istream& in ) {
};
if
(
version
>=
0x0A010000
)
{
if
(
(
userVersion
!=
0
)
)
{
NifStream
(
u
nknownInt3
,
in
,
version
);
NifStream
(
u
serVersion2
,
in
,
version
);
};
};
if
(
version
>=
0x0A000102
)
{
...
...
@@ -65,7 +65,7 @@ void Header::Write( ostream& out ) const {
};
if
(
version
>=
0x0A010000
)
{
if
(
(
userVersion
!=
0
)
)
{
NifStream
(
u
nknownInt3
,
out
,
version
);
NifStream
(
u
serVersion2
,
out
,
version
);
};
};
if
(
version
>=
0x0A000102
)
{
...
...
@@ -98,7 +98,7 @@ string Header::asString( bool verbose ) const {
out
<<
" Num Blocks: "
<<
numBlocks
<<
endl
;
out
<<
" Unknown Int 1: "
<<
unknownInt1
<<
endl
;
if
(
(
userVersion
!=
0
)
)
{
out
<<
" U
nknown Int 3: "
<<
unknownInt3
<<
endl
;
out
<<
" U
ser Version 2: "
<<
userVersion2
<<
endl
;
out
<<
" Creator?: "
<<
creator_
<<
endl
;
out
<<
" Export Type?: "
<<
exportType_
<<
endl
;
out
<<
" Export Script?: "
<<
exportScript_
<<
endl
;
...
...
This diff is collapsed.
Click to expand it.
gen/Header.h
+
3
−
2
View file @
944472d7
...
...
@@ -49,9 +49,10 @@ struct NIFLIB_API Header {
*/
uint
unknownInt1
;
/*!
* Unknown.
* This also appears to be the extra user version number and must be set
* in some circumstances.
*/
uint
u
nknownInt3
;
uint
u
serVersion2
;
/*!
* Could be the name of the creator of the NIF file?
*/
...
...
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