use db instead of item_frag on ItemFragment remote chunks

This commit is contained in:
Bryan Bishop
2012-05-16 21:16:28 -05:00
parent 611016ae40
commit a049ef74f8
2 changed files with 2 additions and 2 deletions

View File

@ -443,7 +443,7 @@ def macro_translator(macro, token, line):
# "db" is a macro because of TextEndingCommand
# rgbasm can handle "db" so no preprocessing is required
# (don't check its param count)
if macro.macro_name == "db" and macro == TextEndingCommand:
if macro.macro_name == "db" and macro in [TextEndingCommand, ItemFragment]:
sys.stdout.write(original_line)
return