Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Clark Lin
hw3d
Commits
596e2ee6
Commit
596e2ee6
authored
Dec 23, 2018
by
chili
Browse files
fix fallthrough bullshits
parent
b525461b
Changes
1
Hide whitespace changes
Inline
Side-by-side
hw3d/Window.cpp
View file @
596e2ee6
...
@@ -171,8 +171,9 @@ LRESULT Window::HandleMsg( HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam ) noex
...
@@ -171,8 +171,9 @@ LRESULT Window::HandleMsg( HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam ) noex
/************* MOUSE MESSAGES ****************/
/************* MOUSE MESSAGES ****************/
case
WM_MOUSEMOVE
:
case
WM_MOUSEMOVE
:
{
{
POINTS
pt
=
MAKEPOINTS
(
lParam
);
const
POINTS
pt
=
MAKEPOINTS
(
lParam
);
mouse
.
OnMouseMove
(
pt
.
x
,
pt
.
y
);
mouse
.
OnMouseMove
(
pt
.
x
,
pt
.
y
);
break
;
}
}
case
WM_LBUTTONDOWN
:
case
WM_LBUTTONDOWN
:
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment