mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-01 15:28:21 -04:00
Stratosphere: Fix smhax.
This commit is contained in:
parent
c8ef305880
commit
809090e40d
3 changed files with 18 additions and 8 deletions
|
@ -11,12 +11,11 @@ enum UserServiceCmd {
|
|||
|
||||
class UserService : IServiceObject {
|
||||
u64 pid;
|
||||
bool has_initialized;
|
||||
|
||||
public:
|
||||
Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size);
|
||||
UserService() {
|
||||
this->pid = U64_MAX;
|
||||
}
|
||||
UserService() : pid(U64_MAX), has_initialized(false) { }
|
||||
|
||||
private:
|
||||
/* Actual commands. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue