Fixed Part Stack issue and updated About Dialog

This commit is contained in:
2019-07-08 18:38:53 +02:00
parent 6bf642d2af
commit 4ea841cc7b
8 changed files with 10 additions and 7 deletions

View File

@ -76,6 +76,7 @@ public class BitVector {
for(int i=resWidth-1; i>=0; i--){
int digit=0;
for(int j=3; j>=0; j--){
if((4*i+j)>=value.length) continue;
BitValue val = BitValue.fromChar(value[4*i+j]);
switch(val) {
case X: