This commit is contained in:
Denis Molony 2021-01-10 17:23:19 +10:00
parent f5ca23da26
commit ba7c178a5c
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class ApplesoftBasicProgram extends BasicProgram implements ApplesoftCons
while ((nextLine = Utility.unsignedShort (buffer, ptr)) != 0)
{
int lineNumber = Utility.unsignedShort (buffer, ptr + 2);
text.append (String.format ("%5d ", lineNumber));
text.append (String.format (" %5d ", lineNumber));
// text.append (
// String.format ("%04X %04X %5d ", loadAddress + ptr, nextLine, lineNumber));
ptr += 4;