-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Misc and minor improvements of syscalls used by VSH #13067
Conversation
rpcs3/Emu/Cell/lv2/sys_ss.cpp
Outdated
| @@ -146,7 +143,7 @@ s32 sys_ss_get_open_psid(vm::ptr<CellSsOpenPSID> psid) | |||
|
|
|||
| error_code sys_ss_appliance_info_manager(u32 code, vm::ptr<u8> buffer) | |||
| { | |||
| sys_ss.warning("sys_ss_appliance_info_manager(code=0x%x, buffer=*0x%x)", code, buffer); | |||
| sys_ss.trace("sys_ss_appliance_info_manager(code=0x%x, buffer=*0x%x)", code, buffer); | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't listen to that dated developer guide, trace is simply put not logged which is not what we want. here you can use notice level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LMAO. Changed.
|
Rebase needed. |
Mainly implemented sys_ss_get_console_id(), and added sys_sm_set_shop_mode(), which is used not only by SHOP firmware but also by GEX firmware.