From c3d95953c07f02810dfadf89fd8d3306e029b5dd Mon Sep 17 00:00:00 2001 From: Maximilian Seidler <78690852+PaideiaDilemma@users.noreply.github.com> Date: Fri, 3 Jan 2025 22:57:16 +0000 Subject: [PATCH] output: fix setting transform (#636) --- src/core/Output.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Output.cpp b/src/core/Output.cpp index 1814870..82986bd 100644 --- a/src/core/Output.cpp +++ b/src/core/Output.cpp @@ -35,8 +35,8 @@ COutput::COutput(SP output_, uint32_t name_) : name(name_), output(o }); output->setGeometry( - [this](CCWlOutput* r, int32_t x, int32_t y, int32_t physical_width, int32_t physical_height, int32_t subpixel, const char* make, const char* model, int32_t transform) { - transform = (wl_output_transform)transform; + [this](CCWlOutput* r, int32_t x, int32_t y, int32_t physical_width, int32_t physical_height, int32_t subpixel, const char* make, const char* model, int32_t transform_) { + transform = (wl_output_transform)transform_; Debug::log(LOG, "output {} make {} model {}", name, make ? make : "", model ? model : ""); });