From f2232b615745d21d0f5cc2acec4f28da324d72a5 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Tue, 22 Feb 2022 17:48:13 -0500 Subject: [PATCH] more lynx micro-fixes and bump version to dev57 allocated 3 versions for possible emergency fix releases after 0.5.7 0.6 dev starts here! --- src/engine/engine.h | 4 ++-- src/gui/gui.cpp | 2 +- src/gui/settings.cpp | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/engine/engine.h b/src/engine/engine.h index 71b0de303..894869759 100644 --- a/src/engine/engine.h +++ b/src/engine/engine.h @@ -37,8 +37,8 @@ warnings+=(String("\n")+x); \ } -#define DIV_VERSION "0.5.7" -#define DIV_ENGINE_VERSION 53 +#define DIV_VERSION "dev57" +#define DIV_ENGINE_VERSION 57 enum DivStatusView { DIV_STATUS_NOTHING=0, diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 9500a1ac9..8fa9614e5 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -1586,7 +1586,7 @@ const char* aboutLine[]={ "thanks to all contributors/bug reporters!" }; -const size_t aboutCount = sizeof(aboutLine) / sizeof(aboutLine[0]); +const size_t aboutCount = sizeof(aboutLine)/sizeof(aboutLine[0]); void FurnaceGUI::drawAbout() { // do stuff diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index c6b27651e..52faa7b95 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -1091,6 +1091,7 @@ void FurnaceGUI::commitSettings() { PUT_UI_COLOR(GUI_COLOR_INSTR_POKEY); PUT_UI_COLOR(GUI_COLOR_INSTR_BEEPER); PUT_UI_COLOR(GUI_COLOR_INSTR_SWAN); + PUT_UI_COLOR(GUI_COLOR_INSTR_MIKEY); PUT_UI_COLOR(GUI_COLOR_INSTR_UNKNOWN); PUT_UI_COLOR(GUI_COLOR_CHANNEL_FM); PUT_UI_COLOR(GUI_COLOR_CHANNEL_PULSE);