mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Fix several errors and warnings from GCC compilation
This commit is contained in:
@ -253,9 +253,9 @@ void plRandomSoundMod::IPlayNext()
|
||||
if (plgAudioSys::AreExtendedLogsEnabled())
|
||||
{
|
||||
if (fGroups)
|
||||
plStatusLog::AddLineS("audio.log", "%s: Playing sound #%d from group %d", GetTarget(0)->GetKeyName(), fCurrent, fCurrentGroup);
|
||||
plStatusLog::AddLineS("audio.log", "%s: Playing sound #%d from group %d", GetTarget(0)->GetKeyName().c_str(), fCurrent, fCurrentGroup);
|
||||
else
|
||||
plStatusLog::AddLineS("audio.log", "%s: Playing sound #%d", GetTarget(0)->GetKeyName(), fCurrent);
|
||||
plStatusLog::AddLineS("audio.log", "%s: Playing sound #%d", GetTarget(0)->GetKeyName().c_str(), fCurrent);
|
||||
}
|
||||
|
||||
fEndTimes[fCurrent] = hsTimer::GetSysSeconds() + currLen;
|
||||
|
Reference in New Issue
Block a user