From 246878240e11adc62ab43dd8ceb30505c8b44ec2 Mon Sep 17 00:00:00 2001 From: lizzie Date: Fri, 27 Feb 2026 17:39:09 +0000 Subject: [PATCH] fuckyougcc --- src/video_core/macro.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/video_core/macro.h b/src/video_core/macro.h index b418eecc45..ad2c7cace7 100644 --- a/src/video_core/macro.h +++ b/src/video_core/macro.h @@ -104,7 +104,7 @@ struct HLEMacro { /// @note: these macros have two versions, a normal and extended version, with the extended version /// also assigning the base vertex/instance. struct HLE_DrawArraysIndirect final { - HLE_DrawArraysIndirect(bool extended) noexcept : extended{extended} {} + HLE_DrawArraysIndirect(bool extended_) noexcept : extended{extended_} {} void Execute(Engines::Maxwell3D& maxwell3d, std::span parameters, [[maybe_unused]] u32 method); void Fallback(Engines::Maxwell3D& maxwell3d, std::span parameters); bool extended; @@ -112,7 +112,7 @@ struct HLE_DrawArraysIndirect final { /// @note: these macros have two versions, a normal and extended version, with the extended version /// also assigning the base vertex/instance. struct HLE_DrawIndexedIndirect final { - explicit HLE_DrawIndexedIndirect(bool extended) noexcept : extended{extended} {} + explicit HLE_DrawIndexedIndirect(bool extended_) noexcept : extended{extended_} {} void Execute(Engines::Maxwell3D& maxwell3d, std::span parameters, [[maybe_unused]] u32 method); void Fallback(Engines::Maxwell3D& maxwell3d, std::span parameters); bool extended; @@ -141,7 +141,7 @@ struct HLE_SetRasterBoundingBox final { void Execute(Engines::Maxwell3D& maxwell3d, std::span parameters, [[maybe_unused]] u32 method); }; struct HLE_ClearConstBuffer final { - HLE_ClearConstBuffer(size_t base_size) noexcept : base_size{base_size} {} + HLE_ClearConstBuffer(size_t base_size_) noexcept : base_size{base_size_} {} void Execute(Engines::Maxwell3D& maxwell3d, std::span parameters, [[maybe_unused]] u32 method); size_t base_size; }; @@ -215,7 +215,7 @@ using AnyCachedMacro = std::variant< >; struct MacroEngine { - MacroEngine(bool is_interpreted) noexcept : is_interpreted{is_interpreted} {} + MacroEngine(bool is_interpreted_) noexcept : is_interpreted{is_interpreted_} {} // Store the uploaded macro code to compile them when they're called. inline void AddCode(u32 method, u32 data) noexcept { uploaded_macro_code[method].push_back(data);