aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2016-07-17 19:50:48 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2016-07-17 19:50:48 +0300
commitb4df8a7c2dd12eea27c8cc52bd52a1bb8c00943f (patch)
tree5a129afd2113bfe72e9d597f96da6cb18ba66f27 /src/main.cpp
parent5154e84468bba497026d41889ac3648bfcc9f2dd (diff)
downloadatracdenc-b4df8a7c2dd12eea27c8cc52bd52a1bb8c00943f.tar.gz
Compilation warnings fixed
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 51794ea..f74b253 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -54,7 +54,6 @@ int main(int argc, char* const* argv) {
{ "bfuidxconst", required_argument, NULL, 1},
{ "bfuidxfast", no_argument, NULL, 2},
{ "notransient", optional_argument, NULL, 3},
- { "mono", no_argument, NULL, 'm'},
{ "nostdout", no_argument, NULL, 4},
{ NULL, 0, NULL, 0}
};
@@ -65,7 +64,6 @@ int main(int argc, char* const* argv) {
uint32_t mode = 0;
uint32_t bfuIdxConst = 0; //0 - auto, no const
bool fastBfuNumSearch = false;
- bool mono = false;
bool nostdout = false;
TAtrac1EncodeSettings::EWindowMode windowMode = TAtrac1EncodeSettings::EWindowMode::EWM_AUTO;
uint32_t winMask = 0; //all is long
@@ -85,9 +83,6 @@ int main(int argc, char* const* argv) {
if (outFile == "-")
nostdout = true;
break;
- case 'm':
- mono = true;
- break;
case 'h':
cout << GetHelp() << endl;
return 0;