Compare commits

...

2 Commits

3 changed files with 3 additions and 3 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

@ -77,7 +77,7 @@ namespace MusicBoxConverter
svg.WriteRectangle(
new Vector2(Offset.X / 2, Offset.Y),
new Vector2(Offset.X / 2, area.Y),
"rgba(255, 128, 0, 0.5)", -1,
"#ffa500", -1,
true
);

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++)
{