From 9fc650dd6e7af6432f0ed8e581bcc168411418ce Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 16 Apr 2014 17:10:26 -0700 Subject: [PATCH] CR feedback --- interface/src/AudioReflector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/AudioReflector.h b/interface/src/AudioReflector.h index 9e697b4918..2408b70a96 100644 --- a/interface/src/AudioReflector.h +++ b/interface/src/AudioReflector.h @@ -23,8 +23,8 @@ enum AudioSource { class AudioPath { public: - AudioPath(AudioSource source = INBOUND_AUDIO, const glm::vec3& origin = glm::vec3(0), - const glm::vec3& direction = glm::vec3(0), float attenuation = 1.0f, + AudioPath(AudioSource source = INBOUND_AUDIO, const glm::vec3& origin = glm::vec3(0.0f), + const glm::vec3& direction = glm::vec3(0.0f), float attenuation = 1.0f, float delay = 0.0f, float distance = 0.0f, bool isDiffusion = false, int bounceCount = 0); AudioSource source;