diff options
| author | 2020-02-10 15:02:04 -0400 | |
|---|---|---|
| committer | 2020-06-18 16:29:22 -0400 | |
| commit | 49a7e0984a1210832b8be24433a95711c7ce029b (patch) | |
| tree | 73cfc4456382895f75b6f56f5f1bb96501929de9 /src/common/fiber.cpp | |
| parent | Common/Tests: Address Feedback (diff) | |
| download | yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.gz yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.xz yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.zip | |
Core/HostTiming: Allow events to be advanced manually.
Diffstat (limited to 'src/common/fiber.cpp')
| -rw-r--r-- | src/common/fiber.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index 1220eddf0..e9c0946b6 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp | |||
| @@ -110,7 +110,7 @@ Fiber::Fiber(std::function<void(void*)>&& entry_point_func, void* start_paramete | |||
| 110 | FiberStartFunc); | 110 | FiberStartFunc); |
| 111 | } | 111 | } |
| 112 | 112 | ||
| 113 | Fiber::Fiber() : guard{}, entry_point{}, start_parameter{}, previous_fiber{} { | 113 | Fiber::Fiber() { |
| 114 | impl = std::make_unique<FiberImpl>(); | 114 | impl = std::make_unique<FiberImpl>(); |
| 115 | } | 115 | } |
| 116 | 116 | ||