Fixed how ca65 handles some debug info from cc65.

ca65 used to claim that an assembler error/warning was found on a C code line; and, that an Assembly line is only indirectly related to it.
Now, ca65 says that the Assembly line has the problem; and, that the Assembly line was produced from the C line.
This commit is contained in:
Greg King
2016-07-03 07:07:09 -04:00
parent 4014783275
commit a6eb7d0763
2 changed files with 9 additions and 1 deletions

View File

@@ -144,7 +144,7 @@ static void AddNotifications (const Collection* LineInfos)
break;
case LI_TYPE_EXT:
Msg = "Assembler code generated from this line";
Msg = "Assembly code generated from this line";
break;
case LI_TYPE_MACRO: