mirror of
https://github.com/fadden/6502bench.git
synced 2025-02-08 05:30:35 +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);
|
||||
}
|
||||
|
||||
/// <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,
|
||||
StringBuilder sb) {
|
||||
Debug.Assert(length <= 16);
|
||||
FormatHexDumpCommon(data, offset, addr, length);
|
||||
sb.Append(mHexDumpBuffer);
|
||||
}
|
||||
|
@ -491,11 +491,8 @@
|
||||
<ItemGroup>
|
||||
<Resource Include="Res\SourceGenIcon.ico" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Include="Res\AboutImage.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Include="Res\RedX.png" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
</Project>
|
||||
|
Loading…
x
Reference in New Issue
Block a user