diff options
author | Marvin Borner | 2020-04-04 23:11:22 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-04 23:11:22 +0200 |
commit | 15e08d632fb305476914041d28395fc16e79efa1 (patch) | |
tree | 2c6e51b9567e9200410c238eaf573b2f366f7a7d /qml/Bit.qml | |
parent | 81cc34bfcc8d7ec695a4d70c4c1c82b9035bf272 (diff) |
Heavy renaming and 0-check fix
Diffstat (limited to 'qml/Bit.qml')
-rw-r--r-- | qml/Bit.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qml/Bit.qml b/qml/Bit.qml index be6d0f6..6563e73 100644 --- a/qml/Bit.qml +++ b/qml/Bit.qml @@ -37,12 +37,16 @@ Loader { var indices = root.matrix.slice(0, bits); var transformed = []; indices.forEach(function(elem) { - transformed.unshift((pad((parseInt(elem) >>> 0).toString(2), bits))[grid.row - 1]); + transformed.push((pad((parseInt(elem) >>> 0).toString(2), bits))[grid.row - 1]); }); var transformed_num = parseInt(transformed.join(""), 2); this.text = transformed_num; root.matrix[index] = transformed_num; + if (transformed_num === 0) { // A rather dumb fix. + root.check(index - 1); + root.check(index - 1); + } } else if (index !== bits){ var num = Math.floor(Math.random() * (Math.pow(2, bits) - 1)) + 1; this.text = num; |