Direct sound problem

Started by
0 comments, last by The C modest god 19 years, 6 months ago
I have the following code:

void 
SoundPlayer::CreateBuffer (DSBUFFERDESC & Desc, LPDIRECTSOUNDBUFFER8 & pBuffer)
{
	LPDIRECTSOUNDBUFFER pBufferOld;

	this->pErr->HandleDirectSoundError (this->pDevice->CreateSoundBuffer(&Desc, &pBufferOld, NULL));
	this->pErr->HandleDirectSoundError (pBufferOld->QueryInterface (IID_IDirectSoundBuffer8, (void **)&pBuffer));
	this->pErr->HandleDirectSoundError (pBufferOld->Release());
}

On release of the old buffer I get an error code of 1, which is not any of the error codes I have copied from the DirectX documentation. What is this error code? and why I am getting it?
It's all about the wheel.Never blindly trust technoligy.I love my internal organs.Real men don't shower.Quote:Original post by Toolmaker Quote:Original post by The C modest godHow is my improoved signature?It sucks, just like you.
Advertisement
I have found out that release doesnt return error code, but rather the reference count.
It's all about the wheel.Never blindly trust technoligy.I love my internal organs.Real men don't shower.Quote:Original post by Toolmaker Quote:Original post by The C modest godHow is my improoved signature?It sucks, just like you.

This topic is closed to new replies.

Advertisement