Page 1 of 1
tdata (basic) BUTTERFLY no color in the next x16.
Posted: Mon Mar 18, 2024 1:29 pm
by funkheld
Hi good afternoon.
tdata (basic) BUTTERFLY no color with latest x16 emulator.
greeting
Re: tdata (basic) BUTTERFLY no color in the next x16.
Posted: Mon Mar 18, 2024 3:44 pm
by JimmyDansbo
For color attributes, you need to use TATTR
I made an example here:
viewtopic.php?p=32274#p32274
Re: tdata (basic) BUTTERFLY no color in the next x16.
Posted: Mon Mar 18, 2024 10:19 pm
by funkheld
hello, thanks.
this is ok.
Code: Select all
XO = 37 : YO = 27
FOR X = 0 TO 6
FOR Y = 0 TO 6
TD = TDATA(X, Y)
TA = TATTR(X, Y)
TILE XO+X, YO+Y, TD, TA
NEXT
NEXT