Skip to content

Commit

Permalink
Version 1.1 - support for TX802, for DX7II "big" or "all" formats
Browse files Browse the repository at this point in the history
  • Loading branch information
BobanSpasic committed Nov 16, 2023
1 parent 7004d1c commit 370996e
Show file tree
Hide file tree
Showing 13 changed files with 2,012 additions and 269 deletions.
9 changes: 7 additions & 2 deletions MDX_PerfConv.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<VersionInfo>
<UseVersionInfo Value="True"/>
<MajorVersionNr Value="1"/>
<RevisionNr Value="2"/>
<MinorVersionNr Value="1"/>
<StringTable FileDescription="Performance converter from DX7II, TX7, DX5 to MiniDexed" LegalCopyright="Boban Spasic" ProductName="MDX Performance Converter"/>
</VersionInfo>
<BuildModes>
Expand Down Expand Up @@ -109,9 +109,14 @@
<IsPartOfProject Value="True"/>
</Unit>
<Unit>
<Filename Value="untTX802Fraeser.pas"/>
<Filename Value="units\untTX802Performance.pas"/>
<IsPartOfProject Value="True"/>
</Unit>
<Unit>
<Filename Value="units\unttx802performancebank.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="untTX802PerformanceBank"/>
</Unit>
</Units>
</ProjectOptions>
<CompilerOptions>
Expand Down
7 changes: 6 additions & 1 deletion MDX_PerfConv.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
untDispatcher,
untConverter,
untDXUtils,
untTX802Fraeser;
untTX802PerformanceBank;


type
Expand Down Expand Up @@ -259,6 +259,11 @@ TMDX_PerfConv = class(TCustomApplication)
DispatchCheck(fVoiceA1, fVoiceB1, fPerf, iNumbering);
end
else
if FileExists(fVoiceA1) and FileExists(fVoiceB1) then
begin
DispatchCheck(fVoiceA1, fVoiceB1, iNumbering);
end
else
if FileExists(fVoiceA1) then
begin
DispatchCheck(fVoiceA1, iNumbering);
Expand Down
Loading

0 comments on commit 370996e

Please sign in to comment.