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
99d1c9ba
Commit
99d1c9ba
authored
Sep 04, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Improve a couple of debug messages.
parent
0f372135
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
effect.c
dlls/d3d10/effect.c
+3
-3
No files found.
dlls/d3d10/effect.c
View file @
99d1c9ba
...
...
@@ -1191,20 +1191,20 @@ static BOOL parse_fx10_state_group(const char **ptr, const char *data,
if
(
property_info
->
container_type
!=
container_type
)
{
ERR
(
"
FAIL1
\n
"
);
ERR
(
"
Invalid container type %#x for property %#x.
\n
"
,
container_type
,
id
);
return
FALSE
;
}
if
(
idx
>=
property_info
->
count
)
{
ERR
(
"
FAIL2
\n
"
);
ERR
(
"
Invalid index %#x for property %#x.
\n
"
,
idx
,
id
);
return
FALSE
;
}
if
(
!
read_value_list
(
data
+
value_offset
,
property_info
->
type
,
idx
,
property_info
->
size
,
(
char
*
)
container
+
property_info
->
offset
))
{
ERR
(
"F
AIL3
\n
"
);
ERR
(
"F
ailed to read values for property %#x.
\n
"
,
id
);
return
FALSE
;
}
}
...
...
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