diff options
author | Astraeus- <Astraeus-@users.noreply.github.com> | 2021-12-18 11:46:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-18 23:36:59 +0100 |
commit | 21335ad72023a696e1e62aa66f3502501f7fd358 (patch) | |
tree | 0970c840642ee0a590fb3afbe5b7132c04a6a090 /Userland/Games | |
parent | 29d5fee07ec7743855a938849f08e4b3c72ecc89 (diff) | |
download | serenity-21335ad72023a696e1e62aa66f3502501f7fd358.zip |
Spider: Convert to try_create_default_icon
Diffstat (limited to 'Userland/Games')
-rw-r--r-- | Userland/Games/Spider/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/Spider/main.cpp b/Userland/Games/Spider/main.cpp index 94d9cf6300..06df8e4b71 100644 --- a/Userland/Games/Spider/main.cpp +++ b/Userland/Games/Spider/main.cpp @@ -42,7 +42,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::pledge("stdio recvfd sendfd rpath unix")); auto app = TRY(GUI::Application::try_create(arguments)); - auto app_icon = GUI::Icon::default_icon("app-spider"); + auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-spider")); Config::pledge_domains("Spider"); |