dmime: Print the track groups consistently in hexadecimal.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
420008cb15
commit
f320ade54d
|
@ -224,7 +224,7 @@ static HRESULT WINAPI IDirectMusicSegment8Impl_GetTrackGroup(IDirectMusicSegment
|
||||||
|
|
||||||
LIST_FOR_EACH (pEntry, &This->Tracks) {
|
LIST_FOR_EACH (pEntry, &This->Tracks) {
|
||||||
pIt = LIST_ENTRY(pEntry, DMUS_PRIVATE_SEGMENT_TRACK, entry);
|
pIt = LIST_ENTRY(pEntry, DMUS_PRIVATE_SEGMENT_TRACK, entry);
|
||||||
TRACE(" - %p -> %d,%p\n", pIt, pIt->dwGroupBits, pIt->pTrack);
|
TRACE(" - %p -> %#x, %p\n", pIt, pIt->dwGroupBits, pIt->pTrack);
|
||||||
if (NULL != pIt && pIt->pTrack == pTrack) {
|
if (NULL != pIt && pIt->pTrack == pTrack) {
|
||||||
*pdwGroupBits = pIt->dwGroupBits;
|
*pdwGroupBits = pIt->dwGroupBits;
|
||||||
return S_OK;
|
return S_OK;
|
||||||
|
@ -637,7 +637,7 @@ static HRESULT parse_track_form(IDirectMusicSegment8Impl *This, IStream *stream,
|
||||||
return hr;
|
return hr;
|
||||||
TRACE("Found DMUS_IO_TRACK_HEADER\n");
|
TRACE("Found DMUS_IO_TRACK_HEADER\n");
|
||||||
TRACE("\tclass: %s\n", debugstr_guid (&thdr.guidClassID));
|
TRACE("\tclass: %s\n", debugstr_guid (&thdr.guidClassID));
|
||||||
TRACE("\tdwGroup: %d\n", thdr.dwGroup);
|
TRACE("\tdwGroup: %#x\n", thdr.dwGroup);
|
||||||
TRACE("\tckid: %s\n", debugstr_fourcc (thdr.ckid));
|
TRACE("\tckid: %s\n", debugstr_fourcc (thdr.ckid));
|
||||||
TRACE("\tfccType: %s\n", debugstr_fourcc (thdr.fccType));
|
TRACE("\tfccType: %s\n", debugstr_fourcc (thdr.fccType));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue