Skip to content

Commit

Permalink
Version 1.3
Browse files Browse the repository at this point in the history
This version additionally trims the time signature and key signature events (88 and 89) which cause Doom 64 EX to freeze.
  • Loading branch information
Immorpher authored Dec 15, 2021
1 parent b2073ea commit d1ba23f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MIDI64nicator.prj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<file>${PROJECT_ROOT}\MIDI64nicator_resources\icon_24.png</file>
<file>${PROJECT_ROOT}\MIDI64nicator_resources\icon_16.png</file>
</param.icons>
<param.version>1.2</param.version>
<param.version>1.3</param.version>
<param.authnamewatermark>Immorpher</param.authnamewatermark>
<param.email>immorpher@gmail.com</param.email>
<param.company>Doom 64</param.company>
Expand Down
2 changes: 1 addition & 1 deletion d64convert.m
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
eventcell = struct2cell(trackcell(j)); % Get current event into cell

% Swap note offs into note ons with 0 velocity
if cell2mat(eventcell(4)) == 1 || cell2mat(eventcell(4)) == 2 || cell2mat(eventcell(4)) == 3 || cell2mat(eventcell(4)) == 4 % Check if info event is defined then delete it
if cell2mat(eventcell(4)) == 1 || cell2mat(eventcell(4)) == 2 || cell2mat(eventcell(4)) == 3 || cell2mat(eventcell(4)) == 4 || cell2mat(eventcell(4)) == 88 || cell2mat(eventcell(4)) == 89 % Check if info event is defined then delete it
eventdim = eventdim - 1; % new event dimension size due to deletion
trackcell(j) = []; % delete cell

Expand Down
Binary file modified midi64nicator_App.mlapp
Binary file not shown.

0 comments on commit d1ba23f

Please sign in to comment.