mirror of
https://github.com/Ylianst/MeshAgent
synced 2025-12-10 21:33:38 +00:00
1. Updated macOS message-box to correctly detect cancel button press
2. Fixed compiler warning 3. Updated --no-embedded=1 detection
This commit is contained in:
@@ -113,7 +113,7 @@ char* crashMemory = ILib_POSIX_InstallCrashHandler(argv[0]);
|
||||
int i;
|
||||
for (i = 1; i < argc; ++i)
|
||||
{
|
||||
if (strcmp(argv[i], "--no-embedded=1") == 0)
|
||||
if (strcmp(argv[i], "--no-embedded=1") == 0 || strcmp(argv[i], "--no-embedded=\"1\"") == 0)
|
||||
{
|
||||
free(integratedJavaScript);
|
||||
integratedJavaScript = NULL;
|
||||
|
||||
Reference in New Issue
Block a user