mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Not sure how this didn't fail before...
This commit is contained in:
@@ -410,7 +410,7 @@ namespace SabreTools
|
|||||||
foreach (XmlNode child in node.ChildNodes)
|
foreach (XmlNode child in node.ChildNodes)
|
||||||
{
|
{
|
||||||
// If we find a rom or disk, add it
|
// If we find a rom or disk, add it
|
||||||
if (node.NodeType == XmlNodeType.Element && (child.Name == "rom" || child.Name == "disk"))
|
if (child.NodeType == XmlNodeType.Element && (child.Name == "rom" || child.Name == "disk"))
|
||||||
{
|
{
|
||||||
// Take care of hex-sized files
|
// Take care of hex-sized files
|
||||||
long size = -1;
|
long size = -1;
|
||||||
|
|||||||
Reference in New Issue
Block a user