From b6c9e23a47f610283f812c2bb4954d647eee2e08 Mon Sep 17 00:00:00 2001 From: Thomas Guillemard <me@thog.eu> Date: Sat, 7 Sep 2019 15:18:06 +0200 Subject: [PATCH] csproj: fix case issue on "ryujinxIcon.png" This fix a build issue when the file system is case sensitive. --- Ryujinx/Ryujinx.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Ryujinx.csproj b/Ryujinx/Ryujinx.csproj index 763feec72b..9ea3fe42a4 100644 --- a/Ryujinx/Ryujinx.csproj +++ b/Ryujinx/Ryujinx.csproj @@ -29,7 +29,7 @@ <EmbeddedResource Include="Ui\assets\GitHubLogo.png" /> <EmbeddedResource Include="Ui\assets\JoyCon.png" /> <EmbeddedResource Include="Ui\assets\PatreonLogo.png" /> - <EmbeddedResource Include="Ui\assets\RyujinxIcon.png" /> + <EmbeddedResource Include="Ui\assets\ryujinxIcon.png" /> <EmbeddedResource Include="Ui\assets\TwitterLogo.png" /> <EmbeddedResource Include="Ui\MainWindow.glade" /> <EmbeddedResource Include="Ui\SwitchSettings.glade" />