Skip to content

Commit

Permalink
NitroTracker 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed Apr 7, 2023
1 parent 4bb1775 commit 373d7a6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.TXT
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
-- v0.4.4-unofficial (2023-04-07)

New features:

- "lock" option in pattern/song tab
- allows queueing patterns to be played without immediately jumping to them
- new directory creation button in file manager
- mono/stereo output override in the options tab

Improvements:

- sample highlight visual now darkens the sample area
- adjusted the pattern/song tab's button layout

Fixes:

- fixed visual glitch upon a failed file save
- fixed visual glitches when font goes outside a list box
- further fixes to saving files in subdirectories

-- v0.4.3-unofficial (2023-04-07)

Improvements:
Expand Down
6 changes: 4 additions & 2 deletions arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ void pausePlay(void)

bool potGoto(u8 pos)
{
if((state->playing == true) && (state->pause == false)) {
if(state->playing == true) {
if (tbqueuelock->getState()) {
state->queued_potpos = pos;
lbpot->highlight(state->queued_potpos);
Expand All @@ -1199,7 +1199,9 @@ bool potGoto(u8 pos)
} else {
state->potpos = pos;
state->row = 0;
CommandStartPlay(state->potpos, state->row, true);
if (state->pause == false) {
CommandStartPlay(state->potpos, state->row, true);
}
return true;
}
} else {
Expand Down

0 comments on commit 373d7a6

Please sign in to comment.