Base+WindowServer: Add a new default wallpaper for fun.

This commit is contained in:
Andreas Kling 2019-03-07 23:58:04 +01:00
parent 28a6ba498a
commit c9c40e1da6
Notes: sideshowbarker 2024-07-19 15:07:48 +09:00
2 changed files with 99915 additions and 1 deletions
Base/res/wallpapers
WindowServer

99914
Base/res/wallpapers/retro.rgb Normal file

File diff suppressed because one or more lines are too long

View file

@ -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