mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Implemented some cellSysutil audio functions, added configurable controls (draft/ugly implementation), and minor changes in cellAudio and ConLog
This commit is contained in:
parent
eb2ab73e16
commit
286254a10a
15 changed files with 1057 additions and 55 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue