From 1ac24accf0a0cb8d770f9d779a6367162720f6d8 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Sat, 14 Feb 2026 20:35:12 +0100 Subject: [PATCH] [client,sdl] fix move constructor of SdlWindow --- client/SDL/SDL3/sdl_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/SDL/SDL3/sdl_window.cpp b/client/SDL/SDL3/sdl_window.cpp index 913af1a10..28531829f 100644 --- a/client/SDL/SDL3/sdl_window.cpp +++ b/client/SDL/SDL3/sdl_window.cpp @@ -62,7 +62,7 @@ SdlWindow::SdlWindow(SDL_DisplayID id, const std::string& title, const SDL_Rect& SdlWindow::SdlWindow(SdlWindow&& other) noexcept : _window(other._window), _displayID(other._displayID), _offset_x(other._offset_x), - _offset_y(other._offset_y) + _offset_y(other._offset_y), _monitor(other._monitor) { other._window = nullptr; }