Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rhargreaves committed Feb 16, 2020
1 parent 576f3e0 commit c35515c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ASMZ80 = $(GENBIN)/zasm
RM = rm -f
NM = nm

BUILD := v0.4-dev
BUILD := v0.4.0
INCS = -I. \
-I$(GENDEV)/sgdk/inc \
-I$(GENDEV)/m86k-elf/include \
Expand Down
2 changes: 1 addition & 1 deletion src/ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ static void hideAllAlgorithms(void)
for (u8 i = 0; i < FM_ALGORITHMS; i++) {
SPR_setVisibility(algorSprites[i], HIDDEN);
}
SPR_update();
}

static void updateAlgorithmDiagram(u8 algorithm)
Expand Down Expand Up @@ -337,6 +336,7 @@ void ui_setMidiChannelParametersVisibility(u8 chan, bool show)
if (!show) {
VDP_clearTextArea(0, MARGIN_Y + base_y + 3, MAX_X, 11);
hideAllAlgorithms();
SPR_update();
}
}

Expand Down

0 comments on commit c35515c

Please sign in to comment.