summaryrefslogtreecommitdiff
path: root/src/common/fiber.cpp
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-02-10 15:02:04 -0400
committerGravatar Fernando Sahmkow2020-06-18 16:29:22 -0400
commit49a7e0984a1210832b8be24433a95711c7ce029b (patch)
tree73cfc4456382895f75b6f56f5f1bb96501929de9 /src/common/fiber.cpp
parentCommon/Tests: Address Feedback (diff)
downloadyuzu-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.cpp2
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
113Fiber::Fiber() : guard{}, entry_point{}, start_parameter{}, previous_fiber{} { 113Fiber::Fiber() {
114 impl = std::make_unique<FiberImpl>(); 114 impl = std::make_unique<FiberImpl>();
115} 115}
116 116