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
aa2f454f
Commit
aa2f454f
authored
Feb 22, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Feb 22, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvidc32: Use BOOL type where appropriate.
parent
1ae3bcc9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
msvideo1.c
dlls/msvidc32/msvideo1.c
+4
-4
No files found.
dlls/msvidc32/msvideo1.c
View file @
aa2f454f
...
...
@@ -67,7 +67,7 @@ typedef BYTE uint8_t;
typedef
struct
Msvideo1Context
{
DWORD
dwMagic
;
int
mode_8bit
;
/* if it's not 8-bit, it's 16-bit */
BOOL
mode_8bit
;
/* if it's not 8-bit, it's 16-bit */
}
Msvideo1Context
;
static
void
...
...
@@ -370,12 +370,12 @@ static LRESULT CRAM_DecompressBegin( Msvideo1Context *info, LPBITMAPINFO in, LPB
TRACE
(
"bitmap is %d bpp
\n
"
,
in
->
bmiHeader
.
biBitCount
);
if
(
in
->
bmiHeader
.
biBitCount
==
8
)
info
->
mode_8bit
=
1
;
info
->
mode_8bit
=
TRUE
;
else
if
(
in
->
bmiHeader
.
biBitCount
==
16
)
info
->
mode_8bit
=
0
;
info
->
mode_8bit
=
FALSE
;
else
{
info
->
mode_8bit
=
0
;
info
->
mode_8bit
=
FALSE
;
FIXME
(
"Unsupported output format %i
\n
"
,
in
->
bmiHeader
.
biBitCount
);
}
...
...
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