Compare commits

..

No commits in common. "88757c7c51fa7b2619384fa56a3245dc6baf8bfc" and "42ab1f84941cd6e1c55704e43a1fde2342899715" have entirely different histories.

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: Note30Corrected.
--box {Note30|Note30Corrected} The music box schema to use when rendering. Default: Note30.
--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),
"#ffa500", -1,
"rgba(255, 128, 0, 0.5)", -1,
true
);

View file

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