mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 13:15:45 +00:00
SingleCore: Move Host Timing from a sepparate thread to main cpu thread.
This commit is contained in:
parent
1bcceea736
commit
287ea2d3b4
7 changed files with 48 additions and 10 deletions
|
@ -597,6 +597,14 @@ public:
|
|||
is_continuous_on_svc = is_continuous;
|
||||
}
|
||||
|
||||
bool IsPhantomMode() const {
|
||||
return is_phantom_mode;
|
||||
}
|
||||
|
||||
void SetPhantomMode(bool phantom) {
|
||||
is_phantom_mode = phantom;
|
||||
}
|
||||
|
||||
private:
|
||||
friend class GlobalScheduler;
|
||||
friend class Scheduler;
|
||||
|
@ -699,6 +707,7 @@ private:
|
|||
bool is_continuous_on_svc = false;
|
||||
|
||||
bool will_be_terminated = false;
|
||||
bool is_phantom_mode = false;
|
||||
|
||||
bool was_running = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue