[client,sdl] fix move constructor of SdlWindow

This commit is contained in:
Armin Novak
2026-02-14 20:35:12 +01:00
parent 0ff34a1124
commit 1ac24accf0

View File

@@ -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;
}