Explorar o código

disable clang-format temp

David Marcec %!s(int64=6) %!d(string=hai) anos
pai
achega
0740758b25
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      src/core/hle/service/nvdrv/interface.cpp

+ 2 - 0
src/core/hle/service/nvdrv/interface.cpp

@@ -60,6 +60,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
 
     if (ctrl.must_delay) {
         ctrl.fresh_call = false;
+        // clang-format off
         ctx.SleepClientThread(
             "NVServices::DelayedResponse", ctrl.timeout,
             [=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx,
@@ -78,6 +79,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
                 rb.Push(result);
             },
             nvdrv->GetEventWriteable(ctrl.event_id));
+        // clang-format on
     } else {
         ctx.WriteBuffer(output);
         if (version == IoctlVersion::Version3) {