diff options
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1349,6 +1349,10 @@ print_comment(INSTRUCTION* pc, long in) if (pc->comment) { // chaining should only be two deep assert(pc->comment->comment == NULL); + // if first was EOL comment, next must be block comment, + // it needs to be indented. + if (pc->memory->comment_type == EOL_COMMENT) + in++; print_comment(pc->comment, in); } } |