Fix marshaling of remote IAmRoot packet.

This commit is contained in:
2019-11-01 01:10:34 +00:00
parent 9597030ab5
commit 67a524e5ba
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ namespace DiscImageChef.Devices.Remote
var res = Marshal.ByteArrayToStructureLittleEndian<DicPacketResAmIRoot>(buf);
return res.am_i_root;
return res.am_i_root != 0;
}
}