summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-31 11:13:02 +0100
committerbunnei <bunneidev@gmail.com>2021-01-29 06:42:25 +0100
commit47829850131f04075950b733cb93a3688e8afb5b (patch)
tree26f0cf0a7f9b01c0266b2b3752fb600953875129 /src/core/hle/kernel/k_thread.h
parenthle: kernel: KThread: Remove thread types that do not exist. (diff)
downloadyuzu-47829850131f04075950b733cb93a3688e8afb5b.tar
yuzu-47829850131f04075950b733cb93a3688e8afb5b.tar.gz
yuzu-47829850131f04075950b733cb93a3688e8afb5b.tar.bz2
yuzu-47829850131f04075950b733cb93a3688e8afb5b.tar.lz
yuzu-47829850131f04075950b733cb93a3688e8afb5b.tar.xz
yuzu-47829850131f04075950b733cb93a3688e8afb5b.tar.zst
yuzu-47829850131f04075950b733cb93a3688e8afb5b.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index d9fe2e363..7dec9449e 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -451,14 +451,6 @@ public:
is_continuous_on_svc = is_continuous;
}
- bool IsPhantomMode() const {
- return is_phantom_mode;
- }
-
- void SetPhantomMode(bool phantom) {
- is_phantom_mode = phantom;
- }
-
bool HasExited() const {
return has_exited;
}
@@ -747,7 +739,6 @@ private:
bool is_continuous_on_svc = false;
bool will_be_terminated = false;
- bool is_phantom_mode = false;
bool has_exited = false;
bool was_running = false;