mirror of
https://github.com/lefticus/6502-cpp.git
synced 2026-04-20 11:17:18 +00:00
Fix processing of labels to get std::variant working
This commit is contained in:
+1
-1
@@ -264,7 +264,7 @@ struct mos6502 : ASMLine
|
||||
return text;// + ':';
|
||||
case ASMLine::Type::Directive:
|
||||
case ASMLine::Type::Instruction: {
|
||||
return fmt::format("\t{} {:15}; {}", text, op.value, comment);
|
||||
return fmt::format("\t{} {:15}\t; {}", text, op.value, comment);
|
||||
}
|
||||
}
|
||||
throw std::runtime_error("Unable to render: " + text);
|
||||
|
||||
Reference in New Issue
Block a user