mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
Merge e1b2e0fc40
into 7267e28e21
This commit is contained in:
commit
5d15f42a85
1 changed files with 3 additions and 1 deletions
|
@ -655,7 +655,9 @@ namespace Mesen.Debugger.ViewModels
|
|||
entries.AddEntry("Attribute address", "$" + tileInfo.AttributeAddress.ToString("X4"));
|
||||
}
|
||||
if(tileInfo.AttributeData >= 0) {
|
||||
entries.AddEntry("Attribute data", "$" + tileInfo.AttributeData.ToString("X2"));
|
||||
int attrVal = tileInfo.AttributeData;
|
||||
entries.AddEntry("Attribute data", "$" + attrVal.ToString("X2"));
|
||||
entries.AddEntry("Attribute bits", Convert.ToString(attrVal, 2).PadLeft(8, '0'));
|
||||
}
|
||||
|
||||
entries.AddSeparator("MiscSeparator");
|
||||
|
|
Loading…
Add table
Reference in a new issue