From 6a60fae5d5ec86b94f9de29778a31a517befea4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Sun, 16 Aug 2026 22:26:42 +0200 Subject: [PATCH] Added missing override --- .../src/Platform/DX11/Renderer/Dx11DepthStencilState.bf | 2 +- GlitchyEngine/src/Platform/Windows/WindowsWindow.bf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GlitchyEngine/src/Platform/DX11/Renderer/Dx11DepthStencilState.bf b/GlitchyEngine/src/Platform/DX11/Renderer/Dx11DepthStencilState.bf index 52c80bb..bb3ad6e 100644 --- a/GlitchyEngine/src/Platform/DX11/Renderer/Dx11DepthStencilState.bf +++ b/GlitchyEngine/src/Platform/DX11/Renderer/Dx11DepthStencilState.bf @@ -45,7 +45,7 @@ namespace GlitchyEngine.Renderer internal DxDSSDesc nativeDescription; internal ID3D11DepthStencilState* nativeDepthStencilState ~ _?.Release(); - public this(GEDSSDesc description) + public override this(GEDSSDesc description) { Debug.Profiler.ProfileResourceFunction!(); diff --git a/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf b/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf index 105e58a..965637e 100644 --- a/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf +++ b/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf @@ -251,7 +251,7 @@ namespace GlitchyEngine [CLink] static extern IntBool IsWindowUnicode(HWND whnd); - public Result SetIcon(StringView filePath) + public override Result SetIcon(StringView filePath) { HICON hIcon = LoadImageW(0, filePath.ToScopedNativeWChar!(), .Icon, 0, 0, .LoadFromFile); if (hIcon == 0)