mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Update save names for reading tickets
This commit is contained in:
parent
c04ae4c7c0
commit
c4117aa85f
1 changed files with 2 additions and 2 deletions
|
@ -85,8 +85,8 @@ namespace NandReaderGui.ViewModel
|
||||||
{
|
{
|
||||||
var tickets = new List<Ticket>();
|
var tickets = new List<Ticket>();
|
||||||
var save = new Savefile(savefile);
|
var save = new Savefile(savefile);
|
||||||
var ticketList = new BinaryReader(save.OpenFile("ticket_list.bin"));
|
var ticketList = new BinaryReader(save.OpenFile("/ticket_list.bin"));
|
||||||
var ticketFile = new BinaryReader(save.OpenFile("ticket.bin"));
|
var ticketFile = new BinaryReader(save.OpenFile("/ticket.bin"));
|
||||||
|
|
||||||
var titleId = ticketList.ReadUInt64();
|
var titleId = ticketList.ReadUInt64();
|
||||||
while (titleId != ulong.MaxValue)
|
while (titleId != ulong.MaxValue)
|
||||||
|
|
Loading…
Reference in a new issue