diff --git a/css/ui.css b/css/ui.css index 9d660e0f..efaee3f5 100644 --- a/css/ui.css +++ b/css/ui.css @@ -286,7 +286,6 @@ canvas.pixelated { .toolbarMenuButton { background-color:#666; border-style:solid; - font-family: "Andale Mono", "Menlo", "Lucida Console", monospace; position:relative; margin-left:0.5em; margin-right:0.5em; diff --git a/doc/notes.txt b/doc/notes.txt index 67ca8aa8..31140a59 100644 --- a/doc/notes.txt +++ b/doc/notes.txt @@ -130,6 +130,7 @@ TODO: - NES crt should mark raster pos when debugging - OAMDMA in profiler? (haltCycles) - ca65 skeleton + - nes.cfg nesbanked.cfg ZP segment is C64-ish - JSNES - doesn't support hiding >8 sprites - doesn't do sprite zero test right diff --git a/index.html b/index.html index 1cfc216a..b633b7f7 100644 --- a/index.html +++ b/index.html @@ -146,41 +146,41 @@ if (window.location.host.endsWith('8bitworkshop.com')) { @@ -203,12 +203,11 @@ if (window.location.host.endsWith('8bitworkshop.com')) { evals/clk - - + + + diff --git a/src/ui.ts b/src/ui.ts index ac0712c7..0d91a20c 100644 --- a/src/ui.ts +++ b/src/ui.ts @@ -1860,7 +1860,7 @@ function loadImportedURL(url : string) { function setPlatformUI() { var name = platform.getMetadata && platform.getMetadata().name; - var menuitem = $("#item_platform_"+platform_id); + var menuitem = $('a[href="?platform='+platform_id+'"]'); if (menuitem.length) { menuitem.addClass("dropdown-item-checked"); name = name || menuitem.text() || name;