Skip to content

Commit

Permalink
remove something from "error" category
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jun 15, 2011
1 parent 74cc1f1 commit 3023ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wintasee/hooks/soundhooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2286,7 +2286,7 @@ struct EmulatedDirectSoundSink : public IDirectSoundSink, public IDirectSoundSin
}
STDMETHOD(SampleToRefTime)(LONGLONG llSampleTime, REFERENCE_TIME *prfTime)
{
debuglog(LCF_DSOUND|LCF_TODO|LCF_ERROR, __FUNCTION__ "(0x%X) called.\n", this);
debuglog(LCF_DSOUND|LCF_TODO, __FUNCTION__ "(0x%X) called.\n", this);
// NYI
if(!prfTime)
return E_POINTER;
Expand All @@ -2295,7 +2295,7 @@ struct EmulatedDirectSoundSink : public IDirectSoundSink, public IDirectSoundSin
}
STDMETHOD(RefTimeToSample)(REFERENCE_TIME rfTime, LONGLONG *pllSampleTime)
{
debuglog(LCF_DSOUND|LCF_TODO|LCF_ERROR, __FUNCTION__ "(0x%X) called.\n", this);
debuglog(LCF_DSOUND|LCF_TODO, __FUNCTION__ "(0x%X) called.\n", this);
// NYI
if(!pllSampleTime)
return E_POINTER;
Expand Down

0 comments on commit 3023ecb

Please sign in to comment.