mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Don't pass plFileName to varargs
This commit is contained in:
@ -347,7 +347,7 @@ bool plWin32StreamingSound::LoadSound( bool is3D )
|
|||||||
|
|
||||||
// Debug info
|
// Debug info
|
||||||
char str[ 256 ];
|
char str[ 256 ];
|
||||||
sprintf( str, " Streaming %s.", fSrcFilename);
|
snprintf( str, arrsize(str), " Streaming %s.", fSrcFilename.AsString().c_str() );
|
||||||
IPrintDbgMessage( str );
|
IPrintDbgMessage( str );
|
||||||
|
|
||||||
plStatusLog::AddLineS( "audioTimes.log", 0xffffffff, "Streaming %4.2f secs of %s",
|
plStatusLog::AddLineS( "audioTimes.log", 0xffffffff, "Streaming %4.2f secs of %s",
|
||||||
|
Reference in New Issue
Block a user