mirror of
https://gitlab.com/Syping/gta5view-cmd
synced 2024-11-23 06:00:22 +01:00
fix missing output
This commit is contained in:
parent
e396f29b2d
commit
91a3726c3f
1 changed files with 11 additions and 0 deletions
11
main.cpp
11
main.cpp
|
@ -144,6 +144,17 @@ int main(int argc, char *argv[])
|
|||
cout << "gta5view-cmd: Exporting of " << args.at(1).toStdString().c_str() << " to " << filePath.toStdString().c_str() << " is failed!" << endl;
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (flags.value("output", QString()).toLower() == "exported_filename")
|
||||
{
|
||||
cout << filePath.toStdString().c_str() << endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
cout << "gta5view-cmd: Exporting of " << args.at(1).toStdString().c_str() << " to " << filePath.toStdString().c_str() << " is successful!" << endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue