mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Debugger off by default
This commit is contained in:
parent
e414f8d105
commit
5170738ddc
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user