summaryrefslogtreecommitdiff
path: root/WindowServer
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-07 23:58:04 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-07 23:58:04 +0100
commitc9c40e1da64ce38f2f5ac9871e33387d718cc004 (patch)
tree59e4700b431e0dea9094875b022498fe78743750 /WindowServer
parent28a6ba498a3a0faf901af6734cc11ff289bd9ceb (diff)
downloadserenity-c9c40e1da64ce38f2f5ac9871e33387d718cc004.zip
Base+WindowServer: Add a new default wallpaper for fun.
Diffstat (limited to 'WindowServer')
-rw-r--r--WindowServer/WSWindowManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WindowServer/WSWindowManager.cpp b/WindowServer/WSWindowManager.cpp
index db28c3017c..ff1892bb4b 100644
--- a/WindowServer/WSWindowManager.cpp
+++ b/WindowServer/WSWindowManager.cpp
@@ -202,7 +202,7 @@ WSWindowManager::WSWindowManager()
m_cursor_bitmap_outer = CharacterBitmap::create_from_ascii(cursor_bitmap_outer_ascii, 12, 17);
#ifdef USE_WALLPAPER
- m_wallpaper_path = "/res/wallpapers/cool.rgb";
+ m_wallpaper_path = "/res/wallpapers/retro.rgb";
m_wallpaper = GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, m_wallpaper_path, { 1024, 768 });
#endif