remove system("pause")

This commit is contained in:
sam-astro 2022-01-15 23:05:59 -05:00
parent 6018e9f4f0
commit c5c2230736

View File

@ -658,7 +658,7 @@ int main(int argc, char* argv[])
else
{
LogWarning("No script provided! Please drag and drop .SLG file over interpreter executable file, or provide it's path as a command-line argument.");
system("pause");
//system("pause");
exit(1);
}
#else
@ -682,7 +682,7 @@ int main(int argc, char* argv[])
scriptString << script.rdbuf();
#endif
system("pause");
//system("pause");
parseSlang(scriptString.str());