mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-25 21:29:25 +00:00
13 lines
142 B
Plaintext
13 lines
142 B
Plaintext
|
|
||
|
#if WIDESCREEN
|
||
|
alias x_coord = word
|
||
|
#else
|
||
|
alias x_coord = byte
|
||
|
#endif
|
||
|
|
||
|
#if TALLSCREEN
|
||
|
alias y_coord = word
|
||
|
#else
|
||
|
alias y_coord = byte
|
||
|
#endif
|