From bb66fbea516f0803f3c009b12feba9b098c2479a Mon Sep 17 00:00:00 2001 From: lizzie Date: Sun, 28 Jun 2026 05:41:31 +0000 Subject: [PATCH] wow, this is fuckery of abi breakage (1/2) --- src/video_core/engines/maxwell_3d.cpp | 2 +- src/video_core/texture_cache/image_base.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 19fa0c67b2..06903a49d5 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -298,7 +298,7 @@ u32 Maxwell3D::ProcessShadowRam(u32 method, u32 argument) { return argument; } -void Maxwell3D::ConsumeSinkImpl() { +void Maxwell3D::ConsumeSinkImpl(Core::System& system) { std::stable_sort(method_sink.begin(), method_sink.end(), [](const auto& a, const auto& b) { return a.first < b.first; }); diff --git a/src/video_core/texture_cache/image_base.h b/src/video_core/texture_cache/image_base.h index e121361f9b..14b30d5d5b 100644 --- a/src/video_core/texture_cache/image_base.h +++ b/src/video_core/texture_cache/image_base.h @@ -1,3 +1,6 @@ +// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project +// SPDX-License-Identifier: GPL-3.0-or-later + // SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later