From 4ced8d23acdc286a19e450a394e396205c7145ac Mon Sep 17 00:00:00 2001 From: MaranBr Date: Thu, 24 Jul 2025 09:47:56 -0400 Subject: [PATCH 1/2] Fix typo --- src/video_core/host1x/codecs/decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/host1x/codecs/decoder.cpp b/src/video_core/host1x/codecs/decoder.cpp index 49a601969c..877219ec44 100755 --- a/src/video_core/host1x/codecs/decoder.cpp +++ b/src/video_core/host1x/codecs/decoder.cpp @@ -41,7 +41,7 @@ void Decoder::Decode() { if (!frame.get()) { LOG_ERROR(HW_GPU, - "Nvdec {} dailed to decode interlaced frame for top 0x{:X} bottom 0x{:X}", id, + "Nvdec {} failed to decode interlaced frame for top 0x{:X} bottom 0x{:X}", id, luma_top, luma_bottom); } From 4fc711587f90c331d68464cd05b27ef49ef313ea Mon Sep 17 00:00:00 2001 From: MaranBr Date: Thu, 24 Jul 2025 09:53:02 -0400 Subject: [PATCH 2/2] Fix headers --- src/video_core/host1x/codecs/decoder.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/video_core/host1x/codecs/decoder.cpp b/src/video_core/host1x/codecs/decoder.cpp index 877219ec44..391bfabc1e 100755 --- a/src/video_core/host1x/codecs/decoder.cpp +++ b/src/video_core/host1x/codecs/decoder.cpp @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project +// SPDX-License-Identifier: GPL-3.0-or-later + // SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later