summaryrefslogtreecommitdiff
path: root/Servers
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-22 00:19:53 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-22 00:21:03 +0100
commit7c0a185970b7d1053eeef464ec81f8490717587d (patch)
tree7fd8b88cae98087d9cad43e667267a3f4b0c52a3 /Servers
parentc2a38c86cfb2f7c35b8f0a860ca43c717dda0153 (diff)
downloadserenity-7c0a185970b7d1053eeef464ec81f8490717587d.zip
Use the PNG loader for all images, and get rid of the .rgb files.
Diffstat (limited to 'Servers')
-rw-r--r--Servers/WindowServer/WSWindow.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}