From 6348d52cfe49f6f32b9bfc553097a063b6e74694 Mon Sep 17 00:00:00 2001 From: Will Scullin Date: Sat, 21 Sep 2019 20:49:09 -0700 Subject: [PATCH] Fix RDMIXED --- js/apple2io.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/apple2io.js b/js/apple2io.js index 4f93af2..a6cb45f 100644 --- a/js/apple2io.js +++ b/js/apple2io.js @@ -175,8 +175,8 @@ export default function Apple2IO(cpu, callbacks) result = callbacks.isText() ? 0x80 : 0x0; break; case LOC.RDMIXED: - if (callbacks.isText) - result = callbacks.isText() ? 0x80 : 0x0; + if (callbacks.isMixed) + result = callbacks.isMixed() ? 0x80 : 0x0; break; case LOC.RDPAGE2: if (callbacks.isPage2)