diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-18 08:06:42 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-18 08:06:44 +0100 |
commit | bcaadac22ca8a7320a46644e8199ef333edce8e9 (patch) | |
tree | 968303f713e9efe6b65ac668f057a5f63495134f /src/yuzu_tester/yuzu.cpp | |
parent | Merge pull request #4866 from Morph1984/mjolnir-p3-prod (diff) | |
download | yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.tar yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.tar.gz yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.tar.bz2 yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.tar.lz yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.tar.xz yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.tar.zst yuzu-bcaadac22ca8a7320a46644e8199ef333edce8e9.zip |
Diffstat (limited to 'src/yuzu_tester/yuzu.cpp')
-rw-r--r-- | src/yuzu_tester/yuzu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp index 5798ce43a..88e4bd1f7 100644 --- a/src/yuzu_tester/yuzu.cpp +++ b/src/yuzu_tester/yuzu.cpp @@ -256,11 +256,11 @@ int main(int argc, char** argv) { system.GPU().Start(); - system.Run(); + void(system.Run()); while (!finished) { std::this_thread::sleep_for(std::chrono::milliseconds(1)); } - system.Pause(); + void(system.Pause()); detached_tasks.WaitForAllTasks(); return return_value; |