-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ | |
|
||
#include "Utils/LOG.h" | ||
#include "Dialogs/Dialogs.h" | ||
#include "GenerateAudioModel.h" | ||
|
||
#include "lessconfig.h" | ||
|
||
#include "lessampler.h" | ||
|
@@ -40,7 +42,7 @@ void lessampler::show_logo() { | |
" Version: " | ||
<< PROJECT_GIT_HASH | ||
<< " |_| " | ||
<< "\nCopyright (c) 2018 - 2022, YuzukiTsuru <[email protected]>" | ||
<< "\n\nCopyright (c) 2018 - 2022, YuzukiTsuru <[email protected]>\n" | ||
<< cc::reset | ||
<< std::endl; | ||
} | ||
|
@@ -52,11 +54,10 @@ void lessampler::run() const { | |
} | ||
|
||
// model generation | ||
if (argc == 1) { | ||
if (argc == 2) { | ||
show_logo(); | ||
YALL_INFO_ << "Start modeling against the audio files in the provided destination folder..."; | ||
|
||
|
||
GenerateAudioModel genmodule(argv[1], configure); | ||
} | ||
|
||
if (argc < 2) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters