mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
265 B
C++
13 lines
265 B
C++
|
|
#include "stdafx.h"
|
||
|
|
|
||
|
|
#include "Emu/Cell/ErrorCodes.h"
|
||
|
|
#include "sys_btsetting.h"
|
||
|
|
|
||
|
|
LOG_CHANNEL(sys_btsetting);
|
||
|
|
|
||
|
|
error_code sys_btsetting_if(u64 cmd, vm::ptr<void> msg) {
|
||
|
|
sys_btsetting.todo("sys_btsetting_if(cmd=0x%llx, msg=*0x%x)", cmd, msg);
|
||
|
|
|
||
|
|
return CELL_OK;
|
||
|
|
}
|