Sim: Revision

This commit is contained in:
Joshua Davidson 2018-12-19 19:55:46 -05:00
parent 9c5c5e9373
commit c2a2fce9b5
2 changed files with 2 additions and 2 deletions

View file

@ -233,5 +233,5 @@ var roundabout = func(x) {
var roundaboutAlt = func(x) {
var y = x * 0.2 - int(x * 0.2);
return y < 0.5 ? 5 * int(x*0.2) : 5 + 5 * int(x*0.2);
return y < 0.5 ? 5 * int(x * 0.2) : 5 + 5 * int(x * 0.2);
};

View file

@ -1 +1 @@
4711
4712