diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-22 00:19:53 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-22 00:21:03 +0100 |
commit | 7c0a185970b7d1053eeef464ec81f8490717587d (patch) | |
tree | 7fd8b88cae98087d9cad43e667267a3f4b0c52a3 /Servers | |
parent | c2a38c86cfb2f7c35b8f0a860ca43c717dda0153 (diff) | |
download | serenity-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.cpp | 2 |
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; } |