Implemented some cellSysutil audio functions, added configurable controls (draft/ugly implementation), and minor changes in cellAudio and ConLog

This commit is contained in:
O1L 2013-12-27 14:55:11 +04:00
parent eb2ab73e16
commit 286254a10a
15 changed files with 1057 additions and 55 deletions

View file

@ -198,6 +198,18 @@ void LogWriter::Warning(const wxString fmt, ...)
WriteToLog("W", frmt.mb_str(), "Yellow");
}
void LogWriter::Success(const wxString fmt, ...)
{
va_list list;
va_start(list, fmt);
const wxString& frmt = FormatV(fmt, list);
va_end(list);
WriteToLog("S", frmt.mb_str(), "Green");
}
void LogWriter::SkipLn()
{
WriteToLog("", "", "Black");