Skip to content

Commit

Permalink
1.0.9a
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Oct 27, 2024
1 parent 1a17801 commit b2fd7a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CC = gcc
endif
endif

VERSION ?= 1.0.9
VERSION ?= 1.0.9a

RESDIR = res
SRCDIR = src
Expand Down
4 changes: 2 additions & 2 deletions web/src/emulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
}
}

Expand Down

0 comments on commit b2fd7a1

Please sign in to comment.