Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nifplg
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
nifplg
Commits
fc9f171a
Commit
fc9f171a
authored
17 years ago
by
Tazpn
Browse files
Options
Downloads
Patches
Plain Diff
Fixes for x64 compile.
parent
e4a0cee1
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
NifProps/NifProps.cpp
+5
-5
5 additions, 5 deletions
NifProps/NifProps.cpp
NifProps/bhkRigidBodyInterface.cpp
+1
-1
1 addition, 1 deletion
NifProps/bhkRigidBodyInterface.cpp
with
6 additions
and
6 deletions
NifProps/NifProps.cpp
+
5
−
5
View file @
fc9f171a
...
...
@@ -27,8 +27,8 @@ public:
void
selectionChanged
();
BOOL
dlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
BOOL
dlgAnimProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
INT_PTR
dlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
INT_PTR
dlgAnimProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
private
:
...
...
@@ -74,12 +74,12 @@ ClassDesc2* GetNifPropsDesc() { return &NifPropsDesc; }
static
BOOL
CALLBACK
NifPropsDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
INT_PTR
CALLBACK
NifPropsDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
return
plugin
.
dlgProc
(
hWnd
,
msg
,
wParam
,
lParam
);
}
static
BOOL
CALLBACK
NifAnimPropsDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
INT_PTR
CALLBACK
NifAnimPropsDlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
return
plugin
.
dlgAnimProc
(
hWnd
,
msg
,
wParam
,
lParam
);
}
...
...
@@ -303,7 +303,7 @@ void NifProps::Destroy(HWND hWnd)
}
BOOL
NifProps
::
dlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
INT_PTR
NifProps
::
dlgProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
Vector3
center
;
...
...
This diff is collapsed.
Click to expand it.
NifProps/bhkRigidBodyInterface.cpp
+
1
−
1
View file @
fc9f171a
...
...
@@ -550,7 +550,7 @@ void bhkRigidBodyIfcHelper::SetQualityType(int value, TimeValue time)
}
int
bhkRigidBodyIfcHelper
::
GetQualityType
(
TimeValue
time
,
Interval
&
valid
)
const
{
floa
t
value
=
NP_DEFAULT_HVK_QUALITY_TYPE
;
in
t
value
=
NP_DEFAULT_HVK_QUALITY_TYPE
;
rbpblock
->
GetValue
(
PB_RB_QUALITY_TYPE
,
time
,
value
,
valid
);
return
value
;
}
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