Allow portable apps

This commit is contained in:
2026-01-12 17:00:15 -06:00
parent 8a0ab43f9a
commit ef7276707e

View File

@@ -52,12 +52,14 @@ namespace Tesses::Framework {
LocalFree(argv);
#else
for(int i = 0; i < argc; i++)
{
args.push_back(argv[i]);
}
#endif
{
if(!args.empty()) TF_AllowPortable(args[0]);
auto req = cb(args);