|
@@ -3,7 +3,7 @@
|
|
|
* Company: Lynar Studios
|
|
|
* E-Mail: webmaster@lynarstudios.com
|
|
|
* Created: 2022-07-03
|
|
|
- * Changed: 2023-02-23
|
|
|
+ * Changed: 2023-05-18
|
|
|
*
|
|
|
* */
|
|
|
|
|
@@ -28,9 +28,7 @@ bool isValidCommand(const CliCommand &_command);
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
{
|
|
|
- CliCommand command(argv, argv + argc);
|
|
|
-
|
|
|
- if (isValidCommand(command))
|
|
|
+ if (CliCommand command(argv, argv + argc); isValidCommand(command))
|
|
|
{
|
|
|
if (command[1] == "--encode")
|
|
|
{
|