fix ico image offset when saving shortcut to windows

This commit is contained in:
Emmanuel Hansen 2024-08-24 10:51:16 +00:00
parent ee63328733
commit 731375db59

View file

@ -165,6 +165,8 @@ namespace Ryujinx.UI.Common.Helper
fs.Seek(14, SeekOrigin.Begin);
fs.WriteByte((byte)dataLength);
fs.WriteByte((byte)(dataLength >> 8));
fs.WriteByte((byte)(dataLength >> 16));
fs.WriteByte((byte)(dataLength >> 24));
}
}
}