From 7c0a185970b7d1053eeef464ec81f8490717587d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 22 Mar 2019 00:19:53 +0100 Subject: Use the PNG loader for all images, and get rid of the .rgb files. --- Servers/WindowServer/WSWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Servers') diff --git a/Servers/WindowServer/WSWindow.cpp b/Servers/WindowServer/WSWindow.cpp index c2e1435efb..385ff24d1f 100644 --- a/Servers/WindowServer/WSWindow.cpp +++ b/Servers/WindowServer/WSWindow.cpp @@ -9,7 +9,7 @@ static GraphicsBitmap& default_window_icon() { static GraphicsBitmap* s_icon; if (!s_icon) - s_icon = GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/window16.rgb", { 16, 16 }).leak_ref(); + s_icon = GraphicsBitmap::load_from_file("/res/icons/16x16/window.png").leak_ref(); return *s_icon; } -- cgit v1.2.3