1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-21 09:16:34 +00:00

Fix signed constants and word-sbyte subtraction

This commit is contained in:
Karol Stasiak
2019-09-20 18:33:41 +02:00
parent 1347be51ae
commit d38405f467
13 changed files with 195 additions and 68 deletions
+1 -7
View File
@@ -116,13 +116,7 @@ pointer source
}
else {
// or just move it
// FIXME: word-subbyte doesn't work yet
if input_dy==$ff {
demosp.ypos+=1
}
if input_dy==$01 {
demosp.ypos-=1
}
demosp.ypos -= input_dy
demosp.xpos += input_dx
}
}