Use correct music box by default
This commit is contained in:
parent
42ab1f8494
commit
74c3509dfa
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue