Use correct music box by default

This commit is contained in:
Starbeamrainbowlabs 2019-02-24 00:19:25 +00:00
parent 42ab1f8494
commit 74c3509dfa
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 2 additions and 2 deletions

View File

@ -10,5 +10,5 @@ Options:
-h --help Shows this help message.
-i --input {filename} Specifies the input midi file to convert.
-o --output {filename} Specifies the file path to output the SVG music box strip to.
--box {Note30|Note30Corrected} The music box schema to use when rendering. Default: Note30.
--box {Note30|Note30Corrected} The music box schema to use when rendering. Default: Note30Corrected.
--debug Activates additional debugging output.

View File

@ -13,7 +13,7 @@ namespace MusicBoxConverter
string inputFilename = "";
string outputFilename = "";
bool debug = false;
MusicBox targetMusicBox = MusicBox.Note30;
MusicBox targetMusicBox = MusicBox.Note30Corrected;
for(int i = 0; i < args.Length; i++)
{