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
580290fd
Commit
580290fd
authored
Nov 07, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmstyle: Fix spelling of the DMUS_PRIVATE_STYLE_MOTIF.dwRhythm field.
parent
db05fe33
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
dmstyle_private.h
dlls/dmstyle/dmstyle_private.h
+1
-1
style.c
dlls/dmstyle/style.c
+3
-3
No files found.
dlls/dmstyle/dmstyle_private.h
View file @
580290fd
...
...
@@ -76,7 +76,7 @@ typedef struct _DMUS_PRIVATE_STYLE_PARTREF_ITEM {
typedef
struct
_DMUS_PRIVATE_STYLE_MOTIF
{
struct
list
entry
;
/* for listing elements */
DWORD
dwRythm
;
DWORD
dwR
h
ythm
;
DMUS_IO_PATTERN
pattern
;
DMUS_OBJECTDESC
desc
;
/** optional for motifs */
...
...
dlls/dmstyle/style.c
View file @
580290fd
...
...
@@ -741,9 +741,9 @@ static HRESULT IDirectMusicStyle8Impl_IPersistStream_ParsePatternList (LPPERSIST
break
;
}
case
DMUS_FOURCC_RHYTHM_CHUNK
:
{
TRACE_
(
dmfile
)(
": Rythm chunk
\n
"
);
IStream_Read
(
pStm
,
&
pNewMotif
->
dwRythm
,
sizeof
(
DWORD
),
NULL
);
TRACE_
(
dmfile
)(
" - dwR
ythm: %u
\n
"
,
pNewMotif
->
dwR
ythm
);
TRACE_
(
dmfile
)(
": R
h
ythm chunk
\n
"
);
IStream_Read
(
pStm
,
&
pNewMotif
->
dwR
h
ythm
,
sizeof
(
DWORD
),
NULL
);
TRACE_
(
dmfile
)(
" - dwR
hythm: %u
\n
"
,
pNewMotif
->
dwRh
ythm
);
/** TODO understand why some Chunks have size > 4 */
liMove
.
QuadPart
=
Chunk
.
dwSize
-
sizeof
(
DWORD
);
IStream_Seek
(
pStm
,
liMove
,
STREAM_SEEK_CUR
,
NULL
);
...
...
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