From 396c12ee73193f4ac3665ecac2f634fc0b046697 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 8 Dec 2011 16:46:21 +0000 Subject: Fixes for unsafe string handling, variable scoping errors. --- nGenEx/SoundD3D.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nGenEx/SoundD3D.cpp') diff --git a/nGenEx/SoundD3D.cpp b/nGenEx/SoundD3D.cpp index 212e856..fb4000e 100644 --- a/nGenEx/SoundD3D.cpp +++ b/nGenEx/SoundD3D.cpp @@ -727,14 +727,14 @@ SoundD3D::Localize() HRESULT hr = buffer->SetPan((LONG) pan); if (!SUCCEEDED(hr)) { char warn[512]; - sprintf(warn, "Warning could not set pan on buffer to %d", pan); + sprintf_s(warn, "Warning could not set pan on buffer to %d", pan); SoundD3DError(warn, hr); } hr = buffer->SetVolume((LONG) vol); if (!SUCCEEDED(hr)) { char warn[512]; - sprintf(warn, "Warning: could not set volume on buffer to %d", vol); + sprintf_s(warn, "Warning: could not set volume on buffer to %d", vol); SoundD3DError(warn, hr); } @@ -769,7 +769,7 @@ SoundD3D::Localize() hr = buffer->SetFrequency(f_shift); if (!SUCCEEDED(hr)) { char warn[512]; - sprintf(warn, "Warning: could not set Doppler frequency on buffer to %d", f_shift); + sprintf_s(warn, "Warning: could not set Doppler frequency on buffer to %d", f_shift); SoundD3DError(warn, hr); } } -- cgit v1.1