Debugger off by default

This commit is contained in:
Will Scullin 2022-07-23 12:32:40 -07:00
parent e414f8d105
commit 5170738ddc
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ export const Apple2 = (props: Apple2Props) => {
const [apple2, setApple2] = useState<Apple2Impl>();
const [error, setError] = useState<unknown>();
const [ready, setReady] = useState(false);
const [showDebug, setShowDebug] = useState(true);
const [showDebug, setShowDebug] = useState(false);
const drivesReady = useMemo(() => new Ready(setError), []);
const io = apple2?.getIO();