fix(frontend): IOS Parser(3)

This commit is contained in:
ShiKhu 2021-11-15 13:02:31 +01:00
parent d6248c1e92
commit e602b646c2
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ export default class PrimitiveReader {
constructor(protected readonly buf: Uint8Array) {}
hasNext() {
return this.buf.length < this.buf.p
return this.buf.length < this.p
}
readUint() {

View file

@ -21,7 +21,7 @@ import {
createListState,
createScreenListState,
} from './lists';
import Parser from './parser';
import Parser from './Parser';
import PerformanceList from './PerformanceList';
const HIGHEST_SPEED = 3;