1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-02 23:14:57 +03:00

Updated DA_Topic().

This commit is contained in:
Andrew Plotkin 2023-05-14 10:31:53 -04:00
parent 88f971ff1a
commit 0ba5c918af

View file

@ -796,9 +796,15 @@ a whole action might produce "Henry taking the grapefruit".)
print "~";
for (a=cf:d<cw:d++,a++) {
wn = a; b = WordAddress(a); c = WordLength(a);
#Ifdef TARGET_ZCODE;
for (i=b:i<b+c:i++) {
print (char) 0->i;
}
#Ifnot; ! TARGET_GLULX
for (i=0:i<c:i++) {
print (char) b-->i;
}
#Endif; ! TARGET_
if (d<cw-1) print " ";
}
print "~";