mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 04:07:57 -05:00
hle: Implement ConvertSessionToDomain, various cleanups.
This commit is contained in:
@ -91,6 +91,14 @@ public:
|
||||
/// TODO(Subv): Find a better name for this.
|
||||
SharedPtr<Thread> currently_handling;
|
||||
|
||||
void ConvertToDomain() {
|
||||
is_domain = true;
|
||||
}
|
||||
|
||||
bool IsDomain() const {
|
||||
return is_domain;
|
||||
}
|
||||
|
||||
private:
|
||||
ServerSession();
|
||||
~ServerSession() override;
|
||||
@ -102,6 +110,8 @@ private:
|
||||
* @return The created server session
|
||||
*/
|
||||
static ResultVal<SharedPtr<ServerSession>> Create(std::string name = "Unknown");
|
||||
|
||||
bool is_domain{};
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user