diff --git a/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf b/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf index a8e4c41..1490ebb 100644 --- a/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf +++ b/GlitchyEngine/src/Platform/Windows/WindowsWindow.bf @@ -259,7 +259,8 @@ namespace GlitchyEngine // Determine whether or not the window is currently active _isActive = GetActiveWindow() == _windowHandle; - SetIcon(desc.Icon); + if (!desc.Icon.IsEmpty) + SetIcon(desc.Icon); } private bool _isResizingOrMoving;