From ef0133c55677903c986a678da3244e8c170746c0 Mon Sep 17 00:00:00 2001 From: ZiggyDev Date: Sat, 19 Sep 2020 00:43:41 -0400 Subject: [PATCH] Damn formatting --- src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp index 76e0acddcc..b18ff8ade5 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp @@ -165,7 +165,8 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector& input, std::vector& outp sizeof(IoctlSubmitGpfifo) + params.num_entries * sizeof(Tegra::CommandListHeader), "Incorrect input size"); - std::memcpy(entries.data(), input2.data(), params.num_entries * sizeof(Tegra::CommandListHeader)); + std::memcpy(entries.data(), input2.data(), + params.num_entries * sizeof(Tegra::CommandListHeader)); } else { ASSERT_MSG(input.size() == sizeof(IoctlSubmitGpfifo) + params.num_entries * sizeof(Tegra::CommandListHeader),