mirror of
https://github.com/KarolS/millfork.git
synced 2024-10-31 14:04:58 +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
|