1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-11-18 22:07:07 +00:00

fixing tab issue

This commit is contained in:
MonstersGoBoom 2019-09-17 20:58:37 -04:00 committed by Karol Stasiak
parent 0988bfc75f
commit 559526bbfb

View File

@ -1,4 +1,4 @@
#if not(ATARI_LYNX)
#FFFFFF#if not(ATARI_LYNX)
#warn atari lynx module should be only used on atari lynx
#endif
@ -31,12 +31,12 @@ byte SPRCTRL1 @$fc81
byte SPRCOLL @$fc82
byte SPRINT @$fc83
byte SUZYBUSEN @$fc90
byte SPRGO @$fc91
byte SPRSYS @$fc92
byte SUZYBUSEN $fc90
byte SPRGO $fc91
byte SPRSYS $fc92
byte JOYSTICK @$fcb0
byte SWITCHES @$fcb1
byte JOYSTICK $fcb0
byte SWITCHES $fcb1
word DISPADR @$fd94
byte SUZYDONEACK @$fd90
@ -129,12 +129,12 @@ array(byte) palette_ram_blue_red[16] @$FDb0
//joystick
const byte BTN_A= %00000001
const byte BTN_B= %00000010
const byte BTN_R= %00010000
const byte BTN_L= %00100000
const byte BTN_D= %01000000
const byte BTN_U= %10000000
const byte BTN_A=%00000001
const byte BTN_B=%00000010
const byte BTN_R=%00010000
const byte BTN_L=%00100000
const byte BTN_D=%01000000
const byte BTN_U=%10000000
inline void read_joy1() {
reset_joy()