mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
relax upper hires preview bound
This commit is contained in:
parent
bf789eb2fd
commit
c7e9598cc5
@ -18,7 +18,7 @@ export interface FileViewerProps {
|
||||
|
||||
const HiresPreview = ({ binary }: { binary: Uint8Array }) => {
|
||||
const canvasRef = useRef<HTMLCanvasElement>(null);
|
||||
if (binary.byteLength < 8187 || binary.byteLength > 8192) {
|
||||
if (binary.byteLength < 8187 || binary.byteLength > 8197) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user