mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fs.mitm: Remove debugging test, fix postprocessing.
This commit is contained in:
parent
ff9412feef
commit
548903e3fb
1 changed files with 7 additions and 7 deletions
|
@ -3,17 +3,17 @@
|
|||
|
||||
Result FsMitMService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) {
|
||||
Result rc = 0xF601;
|
||||
while (cmd_id == 18) {
|
||||
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
Result FsMitMService::postprocess(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) {
|
||||
Result rc = 0xF601;
|
||||
while (cmd_id == 18) {
|
||||
struct {
|
||||
u64 magic;
|
||||
u64 result;
|
||||
} *resp = (decltype(resp))r.Raw;
|
||||
|
||||
}
|
||||
Result rc = (Result)resp->result;
|
||||
/* TODO: Hook here, if needed. */
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue