From b2fd7a11511da252599f85d90930f62705c3ce25 Mon Sep 17 00:00:00 2001 From: Adrian Siekierka Date: Sun, 27 Oct 2024 18:49:42 +0100 Subject: [PATCH] 1.0.9a --- Makefile | 2 +- web/src/emulator.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 95ea1b7..49c6a83 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ CC = gcc endif endif -VERSION ?= 1.0.9 +VERSION ?= 1.0.9a RESDIR = res SRCDIR = src diff --git a/web/src/emulator.js b/web/src/emulator.js index 1c368df..b061e79 100644 --- a/web/src/emulator.js +++ b/web/src/emulator.js @@ -445,7 +445,7 @@ export function createEmulator(render, audio, vfs, options) { if (blinkCycleDuration < 0) { // high colors emu._zzt_load_blink(0); - emu._zzt_set_blink_disable_user_override(3); + emu._zzt_set_blink_user_override(3); } else if (!blinkCycleDuration && blinkCycleDuration !== 0) { // blinkCycleDuration not set emu._zzt_load_blink(1); @@ -455,7 +455,7 @@ export function createEmulator(render, audio, vfs, options) { if (blinkCycleDuration !== 0) { emuObj.render.setBlinkCycleDuration(blinkCycleDuration); } else { - emu._zzt_set_blink_disable_user_override(1); + emu._zzt_set_blink_user_override(1); } }