Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dbb6ab22
Commit
dbb6ab22
authored
Jul 09, 2000
by
Dave Hawkes
Committed by
Alexandre Julliard
Jul 09, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GetIconInfo did no correctly identify icons from cursors.
parent
fa861c2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
cursoricon.c
windows/cursoricon.c
+3
-3
No files found.
windows/cursoricon.c
View file @
dbb6ab22
...
...
@@ -82,7 +82,7 @@ typedef struct tagICONCACHE
static
ICONCACHE
*
IconAnchor
=
NULL
;
static
CRITICAL_SECTION
IconCrst
=
CRITICAL_SECTION_INIT
;
static
DWORD
ICON_HOTSPOT
=
0x4242
4242
;
static
WORD
ICON_HOTSPOT
=
0x
4242
;
/**********************************************************************
* CURSORICON_FindSharedIcon
...
...
@@ -1793,8 +1793,8 @@ BOOL WINAPI GetIconInfo(HICON hIcon,LPICONINFO iconinfo) {
(
ciconinfo
->
ptHotSpot
.
y
==
ICON_HOTSPOT
)
)
{
iconinfo
->
fIcon
=
TRUE
;
iconinfo
->
xHotspot
=
0
;
iconinfo
->
yHotspot
=
0
;
iconinfo
->
xHotspot
=
ciconinfo
->
nWidth
/
2
;
iconinfo
->
yHotspot
=
ciconinfo
->
nHeight
/
2
;
}
else
{
...
...
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