mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-31 23:01:58 +00:00
hia: Fix Window icon loading
This commit is contained in:
parent
6f56690c1c
commit
12a506a644
2 changed files with 1 additions and 1 deletions
Binary file not shown.
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -137,7 +137,7 @@ namespace Ryujinx.Headless
|
|||
|
||||
private void SetWindowIcon()
|
||||
{
|
||||
Stream iconStream = typeof(WindowBase).Assembly.GetManifestResourceStream("Ryujinx.Headless.SDL2.Ryujinx.bmp");
|
||||
Stream iconStream = typeof(WindowBase).Assembly.GetManifestResourceStream("Ryujinx.Ryujinx.bmp");
|
||||
byte[] iconBytes = new byte[iconStream!.Length];
|
||||
|
||||
if (iconStream.Read(iconBytes, 0, iconBytes.Length) != iconBytes.Length)
|
||||
|
|
Loading…
Reference in a new issue