diff options
author | bunnei <bunneidev@gmail.com> | 2022-04-06 21:25:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 21:25:25 +0200 |
commit | eb8c8db8992b5c5027d172c859e214c722be3b56 (patch) | |
tree | 8ec80b645d6ddc680fec8c0454571075c9f1dc49 /src/core/hle/service/nvdrv | |
parent | Merge pull request #8162 from german77/bombslinger (diff) | |
parent | hle: service: nvdrv: Create a service thread where appropriate. (diff) | |
download | yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.tar yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.tar.gz yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.tar.bz2 yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.tar.lz yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.tar.xz yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.tar.zst yuzu-eb8c8db8992b5c5027d172c859e214c722be3b56.zip |
Diffstat (limited to 'src/core/hle/service/nvdrv')
-rw-r--r-- | src/core/hle/service/nvdrv/nvdrv_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv_interface.cpp b/src/core/hle/service/nvdrv/nvdrv_interface.cpp index 1ce2a856b..8467b50e4 100644 --- a/src/core/hle/service/nvdrv/nvdrv_interface.cpp +++ b/src/core/hle/service/nvdrv/nvdrv_interface.cpp @@ -230,7 +230,7 @@ void NVDRV::DumpGraphicsMemoryInfo(Kernel::HLERequestContext& ctx) { } NVDRV::NVDRV(Core::System& system_, std::shared_ptr<Module> nvdrv_, const char* name) - : ServiceFramework{system_, name}, nvdrv{std::move(nvdrv_)} { + : ServiceFramework{system_, name, ServiceThreadType::CreateNew}, nvdrv{std::move(nvdrv_)} { static const FunctionInfo functions[] = { {0, &NVDRV::Open, "Open"}, {1, &NVDRV::Ioctl1, "Ioctl"}, |