small error corrections
This commit is contained in:
@ -112,7 +112,7 @@ public class InputBuffer {
|
||||
} catch (ArrayIndexOutOfBoundsException e ) {
|
||||
return true;
|
||||
}
|
||||
for(int i = command.length - 2; i <= 0 && ret; i--) {
|
||||
for(int i = command.length - 2; i >= 0 && ret; i--) {
|
||||
backCounter = 1;
|
||||
if(startFrameCount - backCounter < 0) {frameToCheck = this.size - (backCounter - startFrameCount);}
|
||||
else {frameToCheck = startFrameCount - backCounter;}
|
||||
|
Reference in New Issue
Block a user