fix ico image offset when saving shortcut to windows
This commit is contained in:
parent
ee63328733
commit
731375db59
1 changed files with 2 additions and 0 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue