mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 10:19:06 +02:00
fixed compiler warnings
This commit is contained in:
parent
f7bf016fb7
commit
fd81053e33
2 changed files with 5 additions and 5 deletions
|
@ -412,10 +412,10 @@ Audio::Audio(Oscilloscope* scope, int16_t initialJitterBufferSamples) :
|
||||||
_collisionSoundDuration(0.0f),
|
_collisionSoundDuration(0.0f),
|
||||||
_proceduralEffectSample(0),
|
_proceduralEffectSample(0),
|
||||||
_heartbeatMagnitude(0.0f),
|
_heartbeatMagnitude(0.0f),
|
||||||
_listenMode(AudioRingBuffer::NORMAL),
|
|
||||||
_listenRadius(0.0f),
|
|
||||||
_songFileStream(NULL),
|
_songFileStream(NULL),
|
||||||
_songFileBytes(0)
|
_songFileBytes(0),
|
||||||
|
_listenMode(AudioRingBuffer::NORMAL),
|
||||||
|
_listenRadius(0.0f)
|
||||||
{
|
{
|
||||||
outputPortAudioError(Pa_Initialize());
|
outputPortAudioError(Pa_Initialize());
|
||||||
|
|
||||||
|
|
|
@ -101,8 +101,8 @@ Avatar::Avatar(Node* owningNode) :
|
||||||
_lastCollisionPosition(0, 0, 0),
|
_lastCollisionPosition(0, 0, 0),
|
||||||
_speedBrakes(false),
|
_speedBrakes(false),
|
||||||
_isThrustOn(false),
|
_isThrustOn(false),
|
||||||
_voxels(this),
|
_leadingAvatar(NULL),
|
||||||
_leadingAvatar(NULL)
|
_voxels(this)
|
||||||
{
|
{
|
||||||
// give the pointer to our head to inherited _headData variable from AvatarData
|
// give the pointer to our head to inherited _headData variable from AvatarData
|
||||||
_headData = &_head;
|
_headData = &_head;
|
||||||
|
|
Loading…
Reference in a new issue