Skip to content

Commit

Permalink
cellMic: change some log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Megamouse committed Apr 11, 2023
1 parent 6c9930e commit b8ae20b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rpcs3/Emu/Cell/Modules/cellMic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ error_code cellMicEnd()

error_code cellMicOpenEx(s32 dev_num, s32 rawSampleRate, s32 rawChannel, s32 DSPSampleRate, s32 bufferSizeMS, u8 signalType)
{
cellMic.trace("cellMicOpenEx(dev_num=%d, rawSampleRate=%d, rawChannel=%d, DSPSampleRate=%d, bufferSizeMS=%d, signalType=0x%x)",
cellMic.notice("cellMicOpenEx(dev_num=%d, rawSampleRate=%d, rawChannel=%d, DSPSampleRate=%d, bufferSizeMS=%d, signalType=0x%x)",
dev_num, rawSampleRate, rawChannel, DSPSampleRate, bufferSizeMS, signalType);

auto& mic_thr = g_fxo->get<mic_thread>();
Expand Down Expand Up @@ -714,7 +714,9 @@ s32 cellMicIsOpen(s32 dev_num)

s32 cellMicIsAttached(s32 dev_num)
{
cellMic.notice("cellMicIsAttached(dev_num=%d)", dev_num);
cellMic.trace("cellMicIsAttached(dev_num=%d)", dev_num);

// TODO
return 1;
}

Expand Down

0 comments on commit b8ae20b

Please sign in to comment.