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
25a34498
Commit
25a34498
authored
Oct 24, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Oct 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Pass PlaySegmentEx start time as track time offset.
parent
c227e8bb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
segmentstate.c
dlls/dmime/segmentstate.c
+2
-2
No files found.
dlls/dmime/segmentstate.c
View file @
25a34498
...
...
@@ -278,8 +278,8 @@ HRESULT segment_state_play(IDirectMusicSegmentState *iface, IDirectMusicPerforma
LIST_FOR_EACH_ENTRY
(
entry
,
&
This
->
tracks
,
struct
track_entry
,
entry
)
{
if
(
FAILED
(
hr
=
IDirectMusicTrack_Play
(
entry
->
track
,
entry
->
state_data
,
start_time
,
end_time
,
0
,
track_flags
,
(
IDirectMusicPerformance
*
)
performance
,
iface
,
entry
->
track_id
)))
if
(
FAILED
(
hr
=
IDirectMusicTrack_Play
(
entry
->
track
,
entry
->
state_data
,
start_time
,
end_time
,
This
->
start_time
,
track_flags
,
(
IDirectMusicPerformance
*
)
performance
,
iface
,
entry
->
track_id
)))
{
WARN
(
"Failed to play track %p, hr %#lx
\n
"
,
entry
->
track
,
hr
);
break
;
...
...
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