Skip to content

Commit

Permalink
cellMouse: silence some log spam
Browse files Browse the repository at this point in the history
  • Loading branch information
Megamouse committed Jan 10, 2024
1 parent 4ad4bad commit 3513f6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/Emu/Cell/Modules/cellMouse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ error_code cellMouseGetData(u32 port_no, vm::ptr<CellMouseData> data)

error_code cellMouseGetDataList(u32 port_no, vm::ptr<CellMouseDataList> data)
{
sys_io.notice("cellMouseGetDataList(port_no=%d, data=0x%x)", port_no, data);
sys_io.trace("cellMouseGetDataList(port_no=%d, data=0x%x)", port_no, data);

auto& handler = g_fxo->get<MouseHandlerBase>();

Expand Down Expand Up @@ -406,7 +406,7 @@ error_code cellMouseGetTabletDataList(u32 port_no, vm::ptr<CellMouseTabletDataLi

error_code cellMouseGetRawData(u32 port_no, vm::ptr<CellMouseRawData> data)
{
sys_io.notice("cellMouseGetRawData(port_no=%d, data=*0x%x)", port_no, data);
sys_io.trace("cellMouseGetRawData(port_no=%d, data=*0x%x)", port_no, data);

auto& handler = g_fxo->get<MouseHandlerBase>();

Expand Down

0 comments on commit 3513f6d

Please sign in to comment.