mirror of
https://github.com/fadden/6502bench.git
synced 2025-02-08 20:30:47 +00:00
Remove unused PNG from project manifest
This commit is contained in:
parent
74cc55de29
commit
08243bf19c
@ -1121,8 +1121,17 @@ namespace Asm65 {
|
|||||||
sb.Append(mHexDumpBuffer);
|
sb.Append(mHexDumpBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Formats up to 16 bytes of data and appends it to the StringBuilder.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">Reference to data.</param>
|
||||||
|
/// <param name="offset">Start offset.</param>
|
||||||
|
/// <param name="addr">Address to put at start of line.</param>
|
||||||
|
/// <param name="length">Number of bytes to format.</param>
|
||||||
|
/// <param name="sb">StringBuilder to append the data to.</param>
|
||||||
public void FormatHexDump(byte[] data, int offset, int addr, int length,
|
public void FormatHexDump(byte[] data, int offset, int addr, int length,
|
||||||
StringBuilder sb) {
|
StringBuilder sb) {
|
||||||
|
Debug.Assert(length <= 16);
|
||||||
FormatHexDumpCommon(data, offset, addr, length);
|
FormatHexDumpCommon(data, offset, addr, length);
|
||||||
sb.Append(mHexDumpBuffer);
|
sb.Append(mHexDumpBuffer);
|
||||||
}
|
}
|
||||||
|
@ -491,9 +491,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="Res\SourceGenIcon.ico" />
|
<Resource Include="Res\SourceGenIcon.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Resource Include="Res\AboutImage.png" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Resource Include="Res\RedX.png" />
|
<Resource Include="Res\RedX.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user