diff options
| author | 2019-09-20 10:25:12 +1000 | |
|---|---|---|
| committer | 2019-09-20 10:25:12 +1000 | |
| commit | 0740758b257753188ae65622742b3d931e9778cf (patch) | |
| tree | 4d4e2c281f8107ce873ec0242c3ebff52697ebc2 /src | |
| parent | Initial implementation of Ioctl2 & Ioctl3 (diff) | |
| download | yuzu-0740758b257753188ae65622742b3d931e9778cf.tar.gz yuzu-0740758b257753188ae65622742b3d931e9778cf.tar.xz yuzu-0740758b257753188ae65622742b3d931e9778cf.zip | |
disable clang-format temp
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nvdrv/interface.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp index b154d598a..699494fcd 100644 --- a/src/core/hle/service/nvdrv/interface.cpp +++ b/src/core/hle/service/nvdrv/interface.cpp | |||
| @@ -60,6 +60,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) { | |||
| 60 | 60 | ||
| 61 | if (ctrl.must_delay) { | 61 | if (ctrl.must_delay) { |
| 62 | ctrl.fresh_call = false; | 62 | ctrl.fresh_call = false; |
| 63 | // clang-format off | ||
| 63 | ctx.SleepClientThread( | 64 | ctx.SleepClientThread( |
| 64 | "NVServices::DelayedResponse", ctrl.timeout, | 65 | "NVServices::DelayedResponse", ctrl.timeout, |
| 65 | [=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx, | 66 | [=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx, |
| @@ -78,6 +79,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) { | |||
| 78 | rb.Push(result); | 79 | rb.Push(result); |
| 79 | }, | 80 | }, |
| 80 | nvdrv->GetEventWriteable(ctrl.event_id)); | 81 | nvdrv->GetEventWriteable(ctrl.event_id)); |
| 82 | // clang-format on | ||
| 81 | } else { | 83 | } else { |
| 82 | ctx.WriteBuffer(output); | 84 | ctx.WriteBuffer(output); |
| 83 | if (version == IoctlVersion::Version3) { | 85 | if (version == IoctlVersion::Version3) { |