Quick fix of save watch
Wrong ToString() method was called when writing Reading was ok
This commit is contained in:
parent
3c07f7e649
commit
ee860fd820
|
@ -132,10 +132,10 @@ namespace BizHawk.Client.Common
|
|||
|
||||
#endregion
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
/*public override string ToString()
|
||||
{
|
||||
return Notes + ": " + ValueString;
|
||||
}
|
||||
}*/
|
||||
|
||||
#region Properties
|
||||
|
||||
|
|
|
@ -97,10 +97,10 @@ namespace BizHawk.Client.Common
|
|||
get { return FormatValue(GetDWord()); }
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
/*public override string ToString()
|
||||
{
|
||||
return Notes + ": " + ValueString;
|
||||
}
|
||||
}*/
|
||||
|
||||
public string FormatValue(uint val)
|
||||
{
|
||||
|
|
|
@ -542,7 +542,7 @@ namespace BizHawk.Client.Common
|
|||
, (Address ?? 0).ToHexString((Domain.Size - 1).NumHexDigits())
|
||||
, SizeAsChar
|
||||
, TypeAsChar
|
||||
, BigEndian
|
||||
, Convert.ToInt32(BigEndian)
|
||||
, DomainName
|
||||
, Notes.Trim('\r', '\n')
|
||||
);
|
||||
|
|
|
@ -92,10 +92,10 @@ namespace BizHawk.Client.Common
|
|||
get { return FormatValue(GetWord()); }
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
/*public override string ToString()
|
||||
{
|
||||
return Notes + ": " + ValueString;
|
||||
}
|
||||
}*/
|
||||
|
||||
public string FormatValue(ushort val)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue