mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 04:59:59 +00:00
disable clang-format temp
This commit is contained in:
parent
f9259c0383
commit
0740758b25
1 changed files with 2 additions and 0 deletions
|
@ -60,6 +60,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
|
||||||
|
|
||||||
if (ctrl.must_delay) {
|
if (ctrl.must_delay) {
|
||||||
ctrl.fresh_call = false;
|
ctrl.fresh_call = false;
|
||||||
|
// clang-format off
|
||||||
ctx.SleepClientThread(
|
ctx.SleepClientThread(
|
||||||
"NVServices::DelayedResponse", ctrl.timeout,
|
"NVServices::DelayedResponse", ctrl.timeout,
|
||||||
[=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx,
|
[=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx,
|
||||||
|
@ -78,6 +79,7 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
|
||||||
rb.Push(result);
|
rb.Push(result);
|
||||||
},
|
},
|
||||||
nvdrv->GetEventWriteable(ctrl.event_id));
|
nvdrv->GetEventWriteable(ctrl.event_id));
|
||||||
|
// clang-format on
|
||||||
} else {
|
} else {
|
||||||
ctx.WriteBuffer(output);
|
ctx.WriteBuffer(output);
|
||||||
if (version == IoctlVersion::Version3) {
|
if (version == IoctlVersion::Version3) {
|
||||||
|
|
Loading…
Reference in a new issue