From 2c2a1832da4b050fba641310d19b90886121ed34 Mon Sep 17 00:00:00 2001 From: Will Scullin Date: Fri, 27 Dec 2019 15:50:40 -0800 Subject: [PATCH] Fix alt char set. --- js/apple2.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/apple2.js b/js/apple2.js index 346869e..5a1c870 100644 --- a/js/apple2.js +++ b/js/apple2.js @@ -31,6 +31,7 @@ export function Apple2(options) { var vm = new VideoModes(gr, hgr, gr2, hgr2, options.e); vm.multiScreen(options.multiScreen); + vm.enhanced(options.enhanced); var io = new Apple2IO(cpu, vm);