Merge branch 'main' into viewport-clamp

This commit is contained in:
Alexis Maiquez 2023-12-12 00:57:51 +01:00 committed by GitHub
commit 13ba153042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@
#include "Steam/FileSystem/FileSystem.h"
#include "WallpaperEngine/Logging/CLog.h"
#include <cstdlib>
#include <cstring>
#include <getopt.h>
@ -190,6 +191,7 @@ CApplicationContext::CApplicationContext (int argc, char* argv[])
case 'h':
printHelp (argv[0]);
std::exit(0);
break;
case 'f':
@ -268,6 +270,7 @@ CApplicationContext::CApplicationContext (int argc, char* argv[])
else
{
printHelp (argv[0]);
std::exit(0);
}
}