From: ehofman Date: Sun, 18 Oct 2009 18:52:15 +0000 (+0000) Subject: sigh, forgot another alut* at the wrong place. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ae58f89fbfd7994079c89232abd81528ce14e083;p=simgear.git sigh, forgot another alut* at the wrong place. --- diff --git a/simgear/sound/soundmgr_openal.cxx b/simgear/sound/soundmgr_openal.cxx index 4ff36eee..b8c11928 100644 --- a/simgear/sound/soundmgr_openal.cxx +++ b/simgear/sound/soundmgr_openal.cxx @@ -500,7 +500,7 @@ bool SGSoundMgr::load(string &samplepath, void **dbuf, int *fmt, ALenum error = alGetError(); if ( error != AL_NO_ERROR ) { string msg = "Failed to load wav file: "; - msg.append(alutGetErrorString(error)); + msg.append(alGetErrorString(error)); throw sg_io_exception(msg.c_str(), sg_location(samplepath)); return false; }